]> git.proxmox.com Git - mirror_novnc.git/blobdiff - core/websock.js
Add Chinese (Traditional) translation
[mirror_novnc.git] / core / websock.js
index 555076bc62283f3721e868bde1f1d266833f069f..03909bca30519e7f4eff4f51d5e08dd8b38fc2f4 100644 (file)
@@ -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;