Remove noisy websock debug logging

It generates too many log lines that it drowns out everything else.
This commit is contained in:
Pierre Ossman 2017-11-24 13:10:35 +01:00
parent 2efa8a5a7c
commit 7f39868158
1 changed files with 0 additions and 4 deletions

View File

@ -168,10 +168,6 @@ Websock.prototype = {
// Send Queue // Send Queue
flush: function () { flush: function () {
if (this._websocket.bufferedAmount !== 0) {
Log.Debug("bufferedAmount: " + this._websocket.bufferedAmount);
}
if (this._sQlen > 0 && this._websocket.readyState === WebSocket.OPEN) { if (this._sQlen > 0 && this._websocket.readyState === WebSocket.OPEN) {
this._websocket.send(this._encode_message()); this._websocket.send(this._encode_message());
this._sQlen = 0; this._sQlen = 0;