Browse Source

Missing change for r1125139 for HADOOP-7272

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20-security@1143257 13f79535-47bb-0310-9956-ffa450edef68
Suresh Srinivas 14 years ago
parent
commit
6a3063bd87
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/core/org/apache/hadoop/ipc/Server.java

+ 2 - 2
src/core/org/apache/hadoop/ipc/Server.java

@@ -1032,14 +1032,14 @@ public abstract class Server {
         }
         if (saslServer.isComplete()) {
           if (LOG.isDebugEnabled()) {
-            LOG.info("SASL server context established. Negotiated QoP is "
+            LOG.debug("SASL server context established. Negotiated QoP is "
                 + saslServer.getNegotiatedProperty(Sasl.QOP));
           }
           String qop = (String) saslServer.getNegotiatedProperty(Sasl.QOP);
           useWrap = qop != null && !"auth".equalsIgnoreCase(qop);
           user = getAuthorizedUgi(saslServer.getAuthorizationID());
           if (LOG.isDebugEnabled()) {
-            LOG.info("SASL server successfully authenticated client: " + user);
+            LOG.debug("SASL server successfully authenticated client: " + user);
           }
           rpcMetrics.incrAuthenticationSuccesses();
           AUDITLOG.info(AUTH_SUCCESSFULL_FOR + user);