Skip to content

Commit

Permalink
Merge pull request #258 from ktock/jslogs
Browse files Browse the repository at this point in the history
js: remove unneeded logs
  • Loading branch information
ktock authored Apr 11, 2024
2 parents d37d8e1 + 5ac92e2 commit 046bc7e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions extras/runcontainerjs/src/web/runcontainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ function connect(name, shared, toNet) {
return curID;
}
function serveData(data, len) {
if (streamData.byteLength < data.byteLength)
console.log("small buffer(net)" + streamData.byteLength + " " + data.byteLength);
var length = len;
if (length > streamData.byteLength)
length = streamData.byteLength;
Expand All @@ -85,8 +83,6 @@ function connect(name, shared, toNet) {
return remain;
}
function serveDataOffset(data, off, len) {
if (streamData.byteLength < data.byteLength)
console.log("small buffer(net)" + streamData.byteLength + " " + data.byteLength);
var length = len;
if (length > streamData.byteLength)
length = streamData.byteLength;
Expand Down Expand Up @@ -142,7 +138,6 @@ function connect(name, shared, toNet) {
} else {
if ((req_.timeout != undefined) && (req_.timeout > 0)) {
if (timeoutHandler) {
console.log("ONGOING POLL (stack)");
clearTimeout(timeoutHandler);
timeoutHandler = null;
timeoutDeadlineMilli = null;
Expand Down

0 comments on commit 046bc7e

Please sign in to comment.