Skip to content

Commit

Permalink
Left a console.log lying around :(
Browse files Browse the repository at this point in the history
  • Loading branch information
daguej committed Aug 1, 2013
1 parent d8b8bd6 commit f0ec470
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "proxywrap",
"version": "0.1.1",
"version": "0.1.2",
"description": "Wraps node's Server interfaces to be compatible with the PROXY protocol",
"main": "proxywrap.js",
"engines": { "node": ">= 0.10.0" },
Expand Down
1 change: 0 additions & 1 deletion proxywrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ exports.proxy = function(iface) {
// restore normal socket functionality, and fire any events that were emitted while we had control of emit()
socket.emit = realEmit;
for (var i = 0; i < history.length; i++) {
console.log(history[i]);
realEmit.apply(socket, history[i]);
if (history[i][0] == 'end' && socket.onend) socket.onend();
}
Expand Down

0 comments on commit f0ec470

Please sign in to comment.