From: Vinicius Daly Felizardo Date: Mon, 24 Jun 2013 18:04:08 +0000 (-0400) Subject: Forgot to remove output that I was using for debug X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b696226ad8965cec83966d5dc13e57ff982b2433;p=KiwiIRC.git Forgot to remove output that I was using for debug --- diff --git a/server/irc/connection.js b/server/irc/connection.js index 3f5a3d6..d07ffb4 100644 --- a/server/irc/connection.js +++ b/server/irc/connection.js @@ -442,7 +442,6 @@ var parse = function (data) { //DECODE server encoding data = iconv.decode(data, this.encoding); - console.log(data); if (this.hold_last && this.held_data !== '') { data = this.held_data + data;