This is an automated email from the ASF dual-hosted git repository.
manikumar pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 728be21 MINOR: Update log level in SaslServerAuthenticator (#10270)
728be21 is described below
commit 728be21bde591cc7b6534b5d5dc8c30ca67efe8d
Author: Manikumar Reddy <[email protected]>
AuthorDate: Fri Mar 5 18:00:50 2021 +0530
MINOR: Update log level in SaslServerAuthenticator (#10270)
Reviewers: Rajini Sivaram <[email protected]>
---
.../kafka/common/security/authenticator/SaslServerAuthenticator.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/clients/src/main/java/org/apache/kafka/common/security/authenticator/SaslServerAuthenticator.java
b/clients/src/main/java/org/apache/kafka/common/security/authenticator/SaslServerAuthenticator.java
index 243495d..e122c18 100644
---
a/clients/src/main/java/org/apache/kafka/common/security/authenticator/SaslServerAuthenticator.java
+++
b/clients/src/main/java/org/apache/kafka/common/security/authenticator/SaslServerAuthenticator.java
@@ -182,7 +182,7 @@ public class SaslServerAuthenticator implements
Authenticator {
throw new IllegalArgumentException("Callback handler not
specified for SASL mechanism " + mechanism);
if (!subjects.containsKey(mechanism))
throw new IllegalArgumentException("Subject cannot be null for
SASL mechanism " + mechanism);
- LOG.debug("{} for mechanism={}: {}",
BrokerSecurityConfigs.CONNECTIONS_MAX_REAUTH_MS, mechanism,
+ LOG.trace("{} for mechanism={}: {}",
BrokerSecurityConfigs.CONNECTIONS_MAX_REAUTH_MS, mechanism,
connectionsMaxReauthMsByMechanism.get(mechanism));
}