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()) {
|
if (toReplay.isEmpty()) {
|
||||||
LOG.warn("Attempt #" + numAttempt + "/" + numTries + " failed for all " +
|
LOG.warn("Attempt #" + numAttempt + "/" + numTries + " failed for all " +
|
||||||
initialActions.size() + "ops, NOT resubmitting,
|
initialActions.size() + "ops, NOT resubmitting, tableName=" + tableName +
|
||||||
tableName=" + tableName + ", location=" + location);
|
", location=" + location);
|
||||||
} else {
|
} else {
|
||||||
submit(initialActions, toReplay, numAttempt, true, errorsByServer);
|
submit(initialActions, toReplay, numAttempt, true, errorsByServer);
|
||||||
}
|
}
|
||||||
|
|
|
@ -370,7 +370,8 @@ public class OpenRegionHandler extends EventHandler {
|
||||||
"so now unassigning -- closing region on server: " +
|
"so now unassigning -- closing region on server: " +
|
||||||
this.server.getServerName());
|
this.server.getServerName());
|
||||||
} else {
|
} 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;
|
result = true;
|
||||||
}
|
}
|
||||||
} catch (KeeperException e) {
|
} catch (KeeperException e) {
|
||||||
|
|
Loading…
Reference in New Issue