Remove noisy websock debug logging
It generates too many log lines that it drowns out everything else.
This commit is contained in:
parent
2efa8a5a7c
commit
7f39868158
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue