From fc730d46374c256ebe1b9294bd232885d72f89a0 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 5 Feb 2016 14:13:14 +0000 Subject: [PATCH] remove unintentional log line --- lib/sync.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/sync.js b/lib/sync.js index 9c55a1f04..c2b65de6d 100644 --- a/lib/sync.js +++ b/lib/sync.js @@ -835,7 +835,6 @@ SyncApi.prototype._getGuestFilter = function() { SyncApi.prototype._updateSyncState = function(newState, data) { var old = this._syncState; this._syncState = newState; - console.log("sync state "+old+" -> "+newState); this.client.emit("sync", this._syncState, old, data); };