This is an automated email from the ASF dual-hosted git repository.

kezhuw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 5664ce11c ZOOKEEPER-4879: Fix log of exception (#2205)
5664ce11c is described below

commit 5664ce11c98cfdd9348b2e32f74307582b7a1dda
Author: luozongle01 <luozon...@hotmail.com>
AuthorDate: Wed Nov 27 10:06:51 2024 +0800

    ZOOKEEPER-4879: Fix log of exception (#2205)
---
 .../src/main/java/org/apache/zookeeper/server/ZooKeeperServer.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/zookeeper-server/src/main/java/org/apache/zookeeper/server/ZooKeeperServer.java
 
b/zookeeper-server/src/main/java/org/apache/zookeeper/server/ZooKeeperServer.java
index 8e291f869..94ccc33b2 100644
--- 
a/zookeeper-server/src/main/java/org/apache/zookeeper/server/ZooKeeperServer.java
+++ 
b/zookeeper-server/src/main/java/org/apache/zookeeper/server/ZooKeeperServer.java
@@ -1806,7 +1806,7 @@ public class ZooKeeperServer implements SessionExpirer, 
ServerStats.Provider {
                     }
                 }
             } catch (SaslException e) {
-                LOG.warn("Client {} failed to SASL authenticate: {}", 
cnxn.getRemoteSocketAddress(), e);
+                LOG.warn("Client {} failed to SASL authenticate", 
cnxn.getRemoteSocketAddress(), e);
                 if (shouldAllowSaslFailedClientsConnect() && 
!authHelper.isSaslAuthRequired()) {
                     LOG.warn("Maintaining client connection despite SASL 
authentication failure.");
                 } else {
@@ -2370,7 +2370,7 @@ public class ZooKeeperServer implements SessionExpirer, 
ServerStats.Provider {
                 try {
                     request.cnxn.sendResponse(rh, null, null);
                 } catch (IOException e) {
-                    LOG.error("IOException : {}", e);
+                    LOG.warn("IOException", e);
                 }
             }
         }

Reply via email to