Skip to content

Commit 4ec83df

Browse files
committed
netty: Reduce TcpMetrics log from INFO to FINE
There's nothing actionable or even informative to users for this log. Remove the noise.
1 parent 064272c commit 4ec83df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

netty/src/main/java/io/grpc/netty/TcpMetrics.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ static EpollInfo loadEpollInfo() {
8484
} catch (ReflectiveOperationException e) {
8585
log.log(Level.FINE, "Failed to initialize Epoll tcp_info reflection", e);
8686
} finally {
87-
log.log(Level.INFO, "Epoll available during static init of TcpMetrics:"
87+
log.log(Level.FINE, "Epoll available during static init of TcpMetrics:"
8888
+ "{0}", epollAvailable);
8989
}
9090
return null;

0 commit comments

Comments
 (0)