HBASE-19328 Remove asked if splittable log messages

Signed-off-by: Michael Stack <stack@apache.org>
Signed-off-by: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
Balazs Meszaros 2017-11-24 11:16:04 +01:00 committed by Michael Stack
parent a62010c9e7
commit ed16667208
No known key found for this signature in database
GPG Key ID: 9816C7FC8ACC93D2
1 changed files with 1 additions and 12 deletions

View File

@ -1305,18 +1305,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
@Override
public boolean isSplittable() {
boolean result = isAvailable() && !hasReferences();
LOG.info("ASKED IF SPLITTABLE " + result + " " + getRegionInfo().getShortNameToLog(),
new Throwable("LOGGING: REMOVE"));
// REMOVE BELOW!!!!
LOG.info("DEBUG LIST ALL FILES");
for (HStore store : this.stores.values()) {
LOG.info("store " + store.getColumnFamilyName());
for (HStoreFile sf : store.getStorefiles()) {
LOG.info(sf.toStringDetailed());
}
}
return result;
return isAvailable() && !hasReferences();
}
@Override