Skip to content

Commit

Permalink
there is no debug function, don't try to use it
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@14247 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 21, 2016
1 parent a4c7ddf commit 8b345ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/html5/js/lib/wsworker_check.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ self.addEventListener('message', function(e) {
}
break;
default:
debug("worker got unknown message");
console.log("worker got unknown message: "+data.cmd);
};
}, false);
2 changes: 1 addition & 1 deletion src/html5/js/xpra_protocol.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ XpraProtocol.prototype._process = function() {
// the header is still on the buffer so wait for packetsize+headersize bytes!
if (this.rQ.length < packet_size+8) {
// we already shifted the header off the buffer?
debug("packet is not complete yet");
//debug("packet is not complete yet");
return;
}

Expand Down

0 comments on commit 8b345ca

Please sign in to comment.