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:
parent
4f0d6bc6be
commit
34f17faa5d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue