This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 185fed5c2cba91b6b64da83f7667acc322b383de 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 a3b970c7c0..a43d8ebda8 100644 --- a/java/org/apache/tomcat/util/net/NioEndpoint.java +++ b/java/org/apache/tomcat/util/net/NioEndpoint.java @@ -1773,7 +1773,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]
