HBASE-15210 Undo aggressive load balancer logging at tens of lines per millisecond; ADDENDUM changing LOG.debug to LOG.trace -- noticed by matteo
This commit is contained in:
parent
18eff3c1c3
commit
f4d9597e1e
|
@ -844,7 +844,7 @@ public abstract class BaseLoadBalancer implements LoadBalancer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (LOG.isTraceEnabled()) {
|
if (LOG.isTraceEnabled()) {
|
||||||
LOG.debug(" Lowest locality region index is " + lowestLocalityRegionIndex
|
LOG.trace(" Lowest locality region index is " + lowestLocalityRegionIndex
|
||||||
+ " and its region server contains " + regionsPerServer[serverIndex].length
|
+ " and its region server contains " + regionsPerServer[serverIndex].length
|
||||||
+ " regions");
|
+ " regions");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue