This is an automated email from the ASF dual-hosted git repository.
szetszwo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new 910cd0a09 RATIS-2538. Removed noisy info log from netty TLS
configuration (#1463)
910cd0a09 is described below
commit 910cd0a0934ae1a9901f548ca4fad0f71c03386c
Author: Andrey Yarovoy <[email protected]>
AuthorDate: Wed May 20 20:04:19 2026 +0300
RATIS-2538. Removed noisy info log from netty TLS configuration (#1463)
---
ratis-netty/src/main/java/org/apache/ratis/netty/NettyConfigKeys.java | 2 --
1 file changed, 2 deletions(-)
diff --git
a/ratis-netty/src/main/java/org/apache/ratis/netty/NettyConfigKeys.java
b/ratis-netty/src/main/java/org/apache/ratis/netty/NettyConfigKeys.java
index e84cb4eb2..fd0906ebf 100644
--- a/ratis-netty/src/main/java/org/apache/ratis/netty/NettyConfigKeys.java
+++ b/ratis-netty/src/main/java/org/apache/ratis/netty/NettyConfigKeys.java
@@ -134,7 +134,6 @@ public interface NettyConfigKeys {
return getTlsConf(key -> parameters.get(key, TLS_CONF_CLASS),
TLS_CONF_PARAMETER, getDefaultLog());
}
static void setTlsConf(Parameters parameters, TlsConf conf) {
- LOG.info("setTlsConf " + conf);
ConfUtils.setTlsConf((key, value) -> parameters.put(key, value,
TLS_CONF_CLASS), TLS_CONF_PARAMETER, conf);
}
@@ -199,7 +198,6 @@ public interface NettyConfigKeys {
return getTlsConf(key -> parameters.get(key, TLS_CONF_CLASS),
TLS_CONF_PARAMETER, getDefaultLog());
}
static void setTlsConf(Parameters parameters, TlsConf conf) {
- LOG.info("setTlsConf " + conf);
ConfUtils.setTlsConf((key, value) -> parameters.put(key, value,
TLS_CONF_CLASS), TLS_CONF_PARAMETER, conf);
}