Skip to content

Commit

Permalink
fix SEP.timeoutSlowDisconnect logging
Browse files Browse the repository at this point in the history
java.lang.IllegalStateException: Attempting to add argument number 5 to a 4 argument CharFormatter: SEP.timeoutSlowDisconnect, conn=%s,sess=%s,time=%s,noWriteSince=%s
  • Loading branch information
wojciech-adaptive committed Mar 26, 2024
1 parent e1961a0 commit d179ab9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static class Formatters
final CharFormatter bufferSlowDisconnect = new CharFormatter(
"SEP.bufferSlowDisconnect, conn=%s,sess=%s,bufferUsage=%s,maxBytesInBuffer=%s,replay=%s");
final CharFormatter timeoutSlowDisconnect = new CharFormatter(
"SEP.timeoutSlowDisconnect, conn=%s,sess=%s,time=%s,noWriteSince=%s");
"SEP.timeoutSlowDisconnect, conn=%s,sess=%s,time=%s,maxBytesInBuffer=%s,noWriteSince=%s");
}

private static final int HEADER_LENGTH = MessageHeaderDecoder.ENCODED_LENGTH;
Expand Down

0 comments on commit d179ab9

Please sign in to comment.