HBASE-24427 HStore.add log format error (#1773)
Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
parent
301659dcc7
commit
285e59af25
|
@ -748,8 +748,8 @@ public class HStore implements Store, HeapSize, StoreConfigInformation,
|
|||
lock.readLock().lock();
|
||||
try {
|
||||
if (this.currentParallelPutCount.getAndIncrement() > this.parallelPutCountPrintThreshold) {
|
||||
LOG.trace(this.getTableName() + "tableName={}, encodedName={}, columnFamilyName={} is " +
|
||||
"too busy!", this.getRegionInfo().getEncodedName(), this .getColumnFamilyName());
|
||||
LOG.trace("tableName={}, encodedName={}, columnFamilyName={} is too busy!",
|
||||
this.getTableName(), this.getRegionInfo().getEncodedName(), this.getColumnFamilyName());
|
||||
}
|
||||
this.memstore.add(cell, memstoreSizing);
|
||||
} finally {
|
||||
|
@ -765,8 +765,8 @@ public class HStore implements Store, HeapSize, StoreConfigInformation,
|
|||
lock.readLock().lock();
|
||||
try {
|
||||
if (this.currentParallelPutCount.getAndIncrement() > this.parallelPutCountPrintThreshold) {
|
||||
LOG.trace(this.getTableName() + "tableName={}, encodedName={}, columnFamilyName={} is " +
|
||||
"too busy!", this.getRegionInfo().getEncodedName(), this .getColumnFamilyName());
|
||||
LOG.trace("tableName={}, encodedName={}, columnFamilyName={} is too busy!",
|
||||
this.getTableName(), this.getRegionInfo().getEncodedName(), this.getColumnFamilyName());
|
||||
}
|
||||
memstore.add(cells, memstoreSizing);
|
||||
} finally {
|
||||
|
|
Loading…
Reference in New Issue