This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new affd92a Correct i18n message name affd92a is described below commit affd92a2b8f89e17aa92e10dce33b22e2043e169 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Sep 7 14:41:39 2020 +0100 Correct i18n message name --- java/org/apache/coyote/http2/Stream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/coyote/http2/Stream.java b/java/org/apache/coyote/http2/Stream.java index 148eae8..9d8bcbe 100644 --- a/java/org/apache/coyote/http2/Stream.java +++ b/java/org/apache/coyote/http2/Stream.java @@ -222,7 +222,7 @@ public class Stream extends AbstractStream implements HeaderEmitter { void receiveReset(long errorCode) { if (log.isDebugEnabled()) { - log.debug(sm.getString("stream.reset.debug", getConnectionId(), getIdentifier(), + log.debug(sm.getString("stream.reset.receive", getConnectionId(), getIdentifier(), Long.toString(errorCode))); } // Set the new state first since read and write both check this --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org