Skip to content

Commit

Permalink
HBASE-26443 Some BaseLoadBalancer log lines should be at DEBUG level (a…
Browse files Browse the repository at this point in the history
…pache#3838)

Signed-off-by: Nick Dimiduk <[email protected]>
Signed-off-by: Viraj Jasani <[email protected]>
Signed-off-by: Xiaolin Ha <[email protected]>
  • Loading branch information
apurtell authored Nov 16, 2021
1 parent 8458e44 commit 69a4eda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ protected abstract List<RegionPlan> balanceTable(TableName tableName,
});
return result;
} else {
LOG.info("Start Generate Balance plan for cluster.");
LOG.debug("Start Generate Balance plan for cluster.");
return balanceTable(HConstants.ENSEMBLE_TABLE_NAME, toEnsumbleTableLoad(loadOfAllTable));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1984,7 +1984,7 @@ public List<RegionPlan> executeRegionPlansWithThrottling(List<RegionPlan> plans)
}
}
}
LOG.info("Balancer is going into sleep until next period in {}ms", getConfiguration()
LOG.debug("Balancer is going into sleep until next period in {}ms", getConfiguration()
.getInt(HConstants.HBASE_BALANCER_PERIOD, HConstants.DEFAULT_HBASE_BALANCER_PERIOD));
return successRegionPlans;
}
Expand Down

0 comments on commit 69a4eda

Please sign in to comment.