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(); long prevState = stateRef.get();
countOfBuffers = toCountOfBuffers(prevState); countOfBuffers = toCountOfBuffers(prevState);
if (countOfBuffers >= maxToCache) { if (countOfBuffers >= maxToCache) {
if (LOG.isWarnEnabled()) { if (LOG.isDebugEnabled()) {
LOG.warn("At capacity: " + countOfBuffers); LOG.debug("At capacity: " + countOfBuffers);
} }
return; return;
} }