Skip to content

Commit

Permalink
Tweak log level to avoid spamming log (opensearch-project#7232)
Browse files Browse the repository at this point in the history
This is a common case and info level logging will result in a ton of
unhelpful log entries.

Signed-off-by: Andrew Ross <andrross@amazon.com>
  • Loading branch information
andrross authored and austintlee committed Apr 28, 2023
1 parent abe09cb commit 5229130
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void balance() {
logger.trace("Performing balancing for remote shards.");

if (remoteRoutingNodes.isEmpty()) {
logger.info("No eligible remote nodes found to perform balancing");
logger.debug("No eligible remote nodes found to perform balancing");
return;
}

Expand Down

0 comments on commit 5229130

Please sign in to comment.