From 7f3986815879421432ba6f4ea4b16c15925daccd Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 24 Nov 2017 13:10:35 +0100 Subject: [PATCH] Remove noisy websock debug logging It generates too many log lines that it drowns out everything else. --- core/websock.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/websock.js b/core/websock.js index 555076bc..03909bca 100644 --- a/core/websock.js +++ b/core/websock.js @@ -168,10 +168,6 @@ Websock.prototype = { // Send Queue flush: function () { - if (this._websocket.bufferedAmount !== 0) { - Log.Debug("bufferedAmount: " + this._websocket.bufferedAmount); - } - if (this._sQlen > 0 && this._websocket.readyState === WebSocket.OPEN) { this._websocket.send(this._encode_message()); this._sQlen = 0;