Skip to content

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 16, 2021
1 parent fa8095b commit 06823a0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion html5/js/lib/lz4.js
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,6 @@ lz4.compress = function compress (src, maxSize) {
//convenience function added for xpra:
lz4.decode = function(data) {
const length = data[0] | (data[1] << 8) | (data[2] << 16) | (data[3] << 24);
console.log("length(", data[0], data[1], data[2], data[3], ")=", length);
if (length<=0) {
throw "invalid length: "+length;
}
Expand Down

0 comments on commit 06823a0

Please sign in to comment.