diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java index caca20b5cee1..48f8462ece0d 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java @@ -81,8 +81,7 @@ public ByteBufferPool(int bufferSize, int maxPoolSize, boolean directByteBuffer) this.directByteBuffer = directByteBuffer; // TODO can add initialPoolSize config also and make those many BBs ready for use. LOG.info("Created with bufferSize={} and maxPoolSize={}", - org.apache.hadoop.util.StringUtils.byteDesc(bufferSize), - org.apache.hadoop.util.StringUtils.byteDesc(maxPoolSize)); + org.apache.hadoop.util.StringUtils.byteDesc(bufferSize), maxPoolSize); this.count = new AtomicInteger(0); }