We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8b8bd6 commit f0ec470Copy full SHA for f0ec470
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "proxywrap",
3
- "version": "0.1.1",
+ "version": "0.1.2",
4
"description": "Wraps node's Server interfaces to be compatible with the PROXY protocol",
5
"main": "proxywrap.js",
6
"engines": { "node": ">= 0.10.0" },
proxywrap.js
@@ -95,7 +95,6 @@ exports.proxy = function(iface) {
95
// restore normal socket functionality, and fire any events that were emitted while we had control of emit()
96
socket.emit = realEmit;
97
for (var i = 0; i < history.length; i++) {
98
- console.log(history[i]);
99
realEmit.apply(socket, history[i]);
100
if (history[i][0] == 'end' && socket.onend) socket.onend();
101
}
0 commit comments