HBASE-3017 More log pruning

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@999154 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-09-20 22:43:25 +00:00
parent 4f0d6bc6be
commit 34f17faa5d
1 changed files with 5 additions and 6 deletions

View File

@ -47,7 +47,6 @@ import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import org.apache.commons.lang.StringUtils;
import com.google.common.base.Function;
import org.apache.commons.logging.Log;
@ -2316,11 +2315,11 @@ public class HRegionServer implements HRegionInterface, HBaseRPCErrorHandler,
}
} catch (IOException ioe) {
if (multi.size() == 1) throw ioe;
LOG.debug("Exception processing " + StringUtils.abbreviate(action.toString(), 64) +
"; " + ioe.getMessage());
response.add(regionName,null);
// stop processing on this region, continue to the next.
}
LOG.debug("Exception processing " +
org.apache.commons.lang.StringUtils.abbreviate(action.toString(), 64) +
"; " + ioe.getMessage());
response.add(regionName,null);
// stop processing on this region, continue to the next.
}
}
return response;