Skip to content

Commit

Permalink
util: MultiChildLoadBalance.shutdown() log to FINE
Browse files Browse the repository at this point in the history
The log level of this method is set to INFO, which is too spammy. Bring
it down to the FINE level.
  • Loading branch information
temawi authored and ejona86 committed Feb 13, 2024
1 parent 7787673 commit 08f8ed1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ protected boolean reactivateChildOnReuse() {

@Override
public void shutdown() {
logger.log(Level.INFO, "Shutdown");
logger.log(Level.FINE, "Shutdown");
for (ChildLbState state : childLbStates.values()) {
state.shutdown();
}
Expand Down

0 comments on commit 08f8ed1

Please sign in to comment.