HDFS-11054. Suppress verbose log message in BlockPlacementPolicyDefault. Contributed by Chen Liang.
This commit is contained in:
parent
d88dca844a
commit
9dce9011ad
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user