HBASE-9282 Minor logging cleanup; shorten logs, remove redundant info
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1516287 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
41db4e539f
commit
4f417a7614
|
@ -535,8 +535,8 @@ class AsyncProcess<CResult> {
|
|||
|
||||
if (toReplay.isEmpty()) {
|
||||
LOG.warn("Attempt #" + numAttempt + "/" + numTries + " failed for all " +
|
||||
initialActions.size() + "ops, NOT resubmitting,
|
||||
tableName=" + tableName + ", location=" + location);
|
||||
initialActions.size() + "ops, NOT resubmitting, tableName=" + tableName +
|
||||
", location=" + location);
|
||||
} else {
|
||||
submit(initialActions, toReplay, numAttempt, true, errorsByServer);
|
||||
}
|
||||
|
|
|
@ -370,7 +370,8 @@ public class OpenRegionHandler extends EventHandler {
|
|||
"so now unassigning -- closing region on server: " +
|
||||
this.server.getServerName());
|
||||
} else {
|
||||
LOG.debug("Transitioned " + r.getEncodedName() + " to OPENED in zk on " + this.server.getServerName());
|
||||
LOG.debug("Transitioned " + r.getRegionInfo().getEncodedName() +
|
||||
" to OPENED in zk on " + this.server.getServerName());
|
||||
result = true;
|
||||
}
|
||||
} catch (KeeperException e) {
|
||||
|
|
Loading…
Reference in New Issue