HBASE-22392. Remove extra/useless +

Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
This commit is contained in:
Puleya7 2019-05-10 16:56:45 +08:00 committed by Jan Hentschel
parent df27820958
commit b8365e5110
No known key found for this signature in database
GPG Key ID: 5CD818B19CC299A3
3 changed files with 3 additions and 3 deletions

View File

@ -2711,7 +2711,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
}
}
MemStoreSize mss = this.memStoreSizing.getMemStoreSize();
LOG.info("Flushing " + + storesToFlush.size() + "/" + stores.size() + " column families," +
LOG.info("Flushing " + storesToFlush.size() + "/" + stores.size() + " column families," +
" dataSize=" + StringUtils.byteDesc(mss.getDataSize()) +
" heapSize=" + StringUtils.byteDesc(mss.getHeapSize()) +
((perCfExtras != null && perCfExtras.length() > 0)? perCfExtras.toString(): "") +

View File

@ -2401,7 +2401,7 @@ public class HStore implements Store, HeapSize, StoreConfigInformation, Propagat
if (LOG.isInfoEnabled()) {
LOG.info("Region: " + HStore.this.getRegionInfo().getEncodedName() +
" added " + storeFile + ", entries=" + storeFile.getReader().getEntries() +
", sequenceid=" + +storeFile.getReader().getSequenceID() + ", filesize="
", sequenceid=" + storeFile.getReader().getSequenceID() + ", filesize="
+ TraditionalBinaryPrefix.long2String(storeFile.getReader().length(), "", 1));
}
}

View File

@ -405,7 +405,7 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
// need to reload split keys each iteration.
final Pair<byte[][], byte[][]> startEndKeys = regionLocator.getStartEndKeys();
if (count != 0) {
LOG.info("Split occurred while grouping HFiles, retry attempt " + +count + " with " +
LOG.info("Split occurred while grouping HFiles, retry attempt " + count + " with " +
queue.size() + " files remaining to group or split");
}