HADOOP-9886. Turn warning message in RetryInvocationHandler to debug. Contributed by Arpit Gupta

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1516034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Arpit Gupta 2013-08-20 23:44:47 +00:00
parent 5e68bc4cd6
commit a6ef93307e
2 changed files with 2 additions and 2 deletions

View File

@ -382,6 +382,8 @@ Release 2.1.1-beta - UNRELEASED
HADOOP-9879. Move the version info of zookeeper dependencies to
hadoop-project/pom (Karthik Kambatla via Sandy Ryza)
HADOOP-9886. Turn warning message in RetryInvocationHandler to debug (arpit)
OPTIMIZATIONS

View File

@ -136,8 +136,6 @@ public class RetryInvocationHandler<T> implements RpcInvocationHandler {
msg += ". Trying to fail over " + formatSleepMessage(action.delayMillis);
if (LOG.isDebugEnabled()) {
LOG.debug(msg, e);
} else {
LOG.warn(msg);
}
} else {
if(LOG.isDebugEnabled()) {