HBASE-8178 IPCUtil produces a LOT of WARN log spew
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1460230 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
187654d17d
commit
fc0443135f
|
@ -102,9 +102,11 @@ class IPCUtil {
|
|||
os.close();
|
||||
if (poolCompressor != null) CodecPool.returnCompressor(poolCompressor);
|
||||
}
|
||||
if (this.cellBlockBuildingInitialBufferSize < baos.size()) {
|
||||
LOG.warn("Buffer grew from " + this.cellBlockBuildingInitialBufferSize +
|
||||
" to " + baos.size());
|
||||
if (LOG.isTraceEnabled()) {}
|
||||
if (this.cellBlockBuildingInitialBufferSize < baos.size()) {
|
||||
LOG.trace("Buffer grew from " + this.cellBlockBuildingInitialBufferSize +
|
||||
" to " + baos.size());
|
||||
}
|
||||
}
|
||||
return baos.getByteBuffer();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue