This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 4c039adb67edf192e26a3a49ed12f36f83fb2a14 Author: lihan <aooo...@gmail.com> AuthorDate: Fri Jun 3 22:57:19 2022 +0800 Replace the fixed message with endpoint.err.handshake --- java/org/apache/tomcat/util/net/NioEndpoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/util/net/NioEndpoint.java b/java/org/apache/tomcat/util/net/NioEndpoint.java index b8785b6de3..3a47646e7a 100644 --- a/java/org/apache/tomcat/util/net/NioEndpoint.java +++ b/java/org/apache/tomcat/util/net/NioEndpoint.java @@ -1723,7 +1723,7 @@ public class NioEndpoint extends AbstractJsseEndpoint<NioChannel,SocketChannel> } catch (IOException x) { handshake = -1; if (log.isDebugEnabled()) { - log.debug("Error during SSL handshake",x); + log.debug(sm.getString("endpoint.err.handshake"),x); } } catch (CancelledKeyException ckx) { handshake = -1; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org