HDFS-11054. Suppress verbose log message in BlockPlacementPolicyDefault. Contributed by Chen Liang.

This commit is contained in:
Arpit Agarwal 2016-10-25 19:50:56 -07:00
parent d88dca844a
commit 9dce9011ad

View File

@ -1034,9 +1034,11 @@ public List<DatanodeStorageInfo> chooseReplicasToDelete(
} }
firstOne = false; firstOne = false;
if (cur == null) { if (cur == null) {
LOG.warn("No excess replica can be found. excessTypes: {}." + if (LOG.isDebugEnabled()) {
" moreThanOne: {}. exactlyOne: {}.", excessTypes, moreThanOne, LOG.debug("No excess replica can be found. excessTypes: {}." +
exactlyOne); " moreThanOne: {}. exactlyOne: {}.", excessTypes,
moreThanOne, exactlyOne);
}
break; break;
} }