From da00adabc792114ac29df607c4734d92a668cbc4 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Thu, 11 Jun 2026 09:08:44 -0700 Subject: [PATCH] netty: Reduce TcpMetrics log from INFO to FINE There's nothing actionable or even informative to users for this log. Remove the noise. --- netty/src/main/java/io/grpc/netty/TcpMetrics.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netty/src/main/java/io/grpc/netty/TcpMetrics.java b/netty/src/main/java/io/grpc/netty/TcpMetrics.java index c5809a5677e..10f3a55014d 100644 --- a/netty/src/main/java/io/grpc/netty/TcpMetrics.java +++ b/netty/src/main/java/io/grpc/netty/TcpMetrics.java @@ -84,7 +84,7 @@ static EpollInfo loadEpollInfo() { } catch (ReflectiveOperationException e) { log.log(Level.FINE, "Failed to initialize Epoll tcp_info reflection", e); } finally { - log.log(Level.INFO, "Epoll available during static init of TcpMetrics:" + log.log(Level.FINE, "Epoll available during static init of TcpMetrics:" + "{0}", epollAvailable); } return null;