Skip to content

Commit

Permalink
util: MultiChildLoadBalance.shutdown() log to FINE (#10935)
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.

Co-authored-by: Terry Wilson <terrymwilson@gmail.com>
  • Loading branch information
larry-safran and temawi committed Feb 21, 2024
1 parent 1795348 commit 5ba8b71
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 5ba8b71

Please sign in to comment.