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:
parent
3863559b07
commit
0f33931b2a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue