Skip to content

Commit 285e59a

Browse files
authored
HBASE-24427 HStore.add log format error (#1773)
Signed-off-by: Viraj Jasani <vjasani@apache.org>
1 parent 301659d commit 285e59a

File tree

1 file changed

+4
-4
lines changed
  • hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver

1 file changed

+4
-4
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -748,8 +748,8 @@ public void add(final Cell cell, MemStoreSizing memstoreSizing) {
748748
lock.readLock().lock();
749749
try {
750750
if (this.currentParallelPutCount.getAndIncrement() > this.parallelPutCountPrintThreshold) {
751-
LOG.trace(this.getTableName() + "tableName={}, encodedName={}, columnFamilyName={} is " +
752-
"too busy!", this.getRegionInfo().getEncodedName(), this .getColumnFamilyName());
751+
LOG.trace("tableName={}, encodedName={}, columnFamilyName={} is too busy!",
752+
this.getTableName(), this.getRegionInfo().getEncodedName(), this.getColumnFamilyName());
753753
}
754754
this.memstore.add(cell, memstoreSizing);
755755
} finally {
@@ -765,8 +765,8 @@ public void add(final Iterable<Cell> cells, MemStoreSizing memstoreSizing) {
765765
lock.readLock().lock();
766766
try {
767767
if (this.currentParallelPutCount.getAndIncrement() > this.parallelPutCountPrintThreshold) {
768-
LOG.trace(this.getTableName() + "tableName={}, encodedName={}, columnFamilyName={} is " +
769-
"too busy!", this.getRegionInfo().getEncodedName(), this .getColumnFamilyName());
768+
LOG.trace("tableName={}, encodedName={}, columnFamilyName={} is too busy!",
769+
this.getTableName(), this.getRegionInfo().getEncodedName(), this.getColumnFamilyName());
770770
}
771771
memstore.add(cells, memstoreSizing);
772772
} finally {

0 commit comments

Comments
 (0)