@@ -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