Skip to content

Commit 0b049c1

Browse files
committed
use placeholders with {} for all arguments
1 parent d851642 commit 0b049c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ protected boolean isExceedSize(int tableRegionsCount, long sizeToCheck) {
3838
}
3939
if (sumSize > sizeToCheck) {
4040
LOG.debug("ShouldSplit because region size is big enough " +
41-
" size=" + StringUtils.humanSize(sumSize) +
42-
", sizeToCheck=" + StringUtils.humanSize(sizeToCheck) +
43-
", regionsWithCommonTable=" + tableRegionsCount);
41+
"size={}, sizeToCheck={}, regionsWithCommonTable={}",
42+
StringUtils.humanSize(sumSize), StringUtils.humanSize(sizeToCheck),
43+
tableRegionsCount);
4444
return true;
4545
}
4646
return false;

0 commit comments

Comments
 (0)