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
commit da78c135e02b25d88962a5a364694aada545cd33 Author: lihan <[email protected]> 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 c01e51d68a..70a1778338 100644 --- a/java/org/apache/tomcat/util/net/NioEndpoint.java +++ b/java/org/apache/tomcat/util/net/NioEndpoint.java @@ -1677,7 +1677,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: [email protected] For additional commands, e-mail: [email protected]
