Skip to content

Commit f0ec470

Browse files
committed
Left a console.log lying around :(
1 parent d8b8bd6 commit f0ec470

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "proxywrap",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Wraps node's Server interfaces to be compatible with the PROXY protocol",
55
"main": "proxywrap.js",
66
"engines": { "node": ">= 0.10.0" },

proxywrap.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ exports.proxy = function(iface) {
9595
// restore normal socket functionality, and fire any events that were emitted while we had control of emit()
9696
socket.emit = realEmit;
9797
for (var i = 0; i < history.length; i++) {
98-
console.log(history[i]);
9998
realEmit.apply(socket, history[i]);
10099
if (history[i][0] == 'end' && socket.onend) socket.onend();
101100
}

0 commit comments

Comments
 (0)