From a42056223435b7d2f5d51e85b5209ebd934a67d5 Mon Sep 17 00:00:00 2001 From: Darren Date: Sat, 18 Oct 2014 21:12:05 +0100 Subject: [PATCH] Removing console.logs --- server/client.js | 2 -- 1 file changed, 2 deletions(-) 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(); }; -- 2.25.1