space into error message

This commit is contained in:
rusefillc 2022-12-17 09:58:05 -05:00
parent fbaea5acd2
commit 28b4a03e0f
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 {