From: Darren Date: Sat, 18 Oct 2014 20:12:05 +0000 (+0100) Subject: Removing console.logs X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a42056223435b7d2f5d51e85b5209ebd934a67d5;p=KiwiIRC.git Removing console.logs --- diff --git a/server/client.js b/server/client.js index 609c906..644ac18 100755 --- a/server/client.js +++ b/server/client.js @@ -113,13 +113,11 @@ Client.prototype.heartbeat = function() { } // After 2 minutes of this heartbeat not being called again, assume the client has disconnected - console.log('resetting heartbeat'); this._heartbeat_tmr = setTimeout(_.bind(this._heartbeat_timeout, this), 120000); }; Client.prototype._heartbeat_timeout = function() { - console.log('heartbeat stopped'); Stats.incr('client.timeout'); this.dispose(); };