Skip to content

Commit

Permalink
Update logging to give information without overwhelming logs (#4689)
Browse files Browse the repository at this point in the history
  • Loading branch information
alerman committed Jun 22, 2024
1 parent cf3792a commit 3aaa3de
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,8 @@ public long balance(BalanceParameters params) {
migrationsFromLastPass.put(migration.getTablet(), migration);
}

LOG.info("Migrating tablets for balance: {}", migrationsOut);
LOG.info("Migrating {} tablets for balance.", migrationsOut.size());
LOG.debug("Tablets currently migrating: {}", migrationsOut);
return minBalanceTime;
}

Expand Down

0 comments on commit 3aaa3de

Please sign in to comment.