diff --git a/exec/load/binkp.js b/exec/load/binkp.js index 04da7f7a6fae945a0202cc5dc838e5d309384b66..007ef1941125cd773bb6d069816308429eca540c 100644 --- a/exec/load/binkp.js +++ b/exec/load/binkp.js @@ -864,7 +864,7 @@ BinkP.prototype.recvFrame = function(timeout) switch(this.sock.poll(timeout)) { case 0: // Timeout if (timeout) { - log(LOG_ERROR, "Timed out receiving packet header!"); + log(LOG_WARNING, "Timed out receiving packet header!"); this.sock.close(); this.sock = undefined; return undefined; @@ -882,7 +882,7 @@ BinkP.prototype.recvFrame = function(timeout) switch(this.sock.poll(timeout)) { case 0: // Timeout if (timeout) { - log(LOG_ERROR, "Timed out receiving second byte of packet header!"); + log(LOG_WARNING, "Timed out receiving second byte of packet header!"); this.sock.close(); this.sock = undefined; return undefined;