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:
Michael Stack 2013-08-21 20:13:20 +00:00
parent 41db4e539f
commit 4f417a7614
2 changed files with 4 additions and 3 deletions

View File

@ -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);
}

View File

@ -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) {