space into error message

This commit is contained in:
rusefillc 2022-12-17 09:58:05 -05:00
parent 6db4158b35
commit d12e1047f1
1 changed files with 1 additions and 1 deletions

View File

@ -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 {