space into error message
This commit is contained in:
parent
fbaea5acd2
commit
28b4a03e0f
|
@ -127,7 +127,7 @@ public class IncomingDataBuffer {
|
|||
while (cbb.length() < count) {
|
||||
int timeout = (int) (startTimestamp + timeoutMs - System.currentTimeMillis());
|
||||
if (timeout <= 0) {
|
||||
log.info(loggingMessage + ": timeout " + timeoutMs + "ms. Got only " + cbb.length() + "byte(s) while expecting " + count);
|
||||
log.info(loggingMessage + ": timeout " + timeoutMs + "ms. Got only " + cbb.length() + " byte(s) while expecting " + count);
|
||||
return true; // timeout. Sad face.
|
||||
}
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue