Skip to content

Commit 040b599

Browse files
committed
Change a log statement that tends to spam the logs to Level.FINE
1 parent d380191 commit 040b599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/io/grpc/internal/ManagedChannelImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1807,7 +1807,7 @@ public void run() {
18071807
}
18081808

18091809
private void handleErrorInSyncContext(Status error) {
1810-
logger.log(Level.WARNING, "[{0}] Failed to resolve name. status={1}",
1810+
logger.log(Level.FINE, "[{0}] Failed to resolve name. status={1}",
18111811
new Object[] {getLogId(), error});
18121812
realChannel.onConfigError();
18131813
if (lastResolutionState != ResolutionState.ERROR) {

0 commit comments

Comments
 (0)