HBASE-17780 BoundedByteBufferPool "At capacity" messages are not actionable

This commit is contained in:
Andrew Purtell 2017-03-14 13:23:11 -07:00
parent 777fea552e
commit 14fb57cab2
1 changed files with 2 additions and 2 deletions

View File

@ -155,8 +155,8 @@ public class BoundedByteBufferPool {
long prevState = stateRef.get();
countOfBuffers = toCountOfBuffers(prevState);
if (countOfBuffers >= maxToCache) {
if (LOG.isWarnEnabled()) {
LOG.warn("At capacity: " + countOfBuffers);
if (LOG.isDebugEnabled()) {
LOG.debug("At capacity: " + countOfBuffers);
}
return;
}