Skip to content

Commit

Permalink
log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgd67 committed Oct 20, 2023
1 parent c0b6081 commit 8c64872
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ public DispatchRequest checkMessageAndReturnSize(java.nio.ByteBuffer byteBuffer,
}
} else {
if (byteBuffer.remaining() < bodyLen) {
log.warn("bodyLen is {} but buffer remaining is {}", byteBuffer.remaining(), bodyLen);
log.warn("bodyLen is {} but buffer remaining is {}", bodyLen, byteBuffer.remaining());
// Same as byteBuffer.get exception
throw new BufferUnderflowException();
}
Expand Down

0 comments on commit 8c64872

Please sign in to comment.