MAPREDUCE-7063. Fix log level inconsistency in CombineFileInputFormat.java

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
Vidura Mudalige 2018-06-14 21:23:01 +05:30 committed by Akira Ajisaka
parent 2c87ec5aff
commit 1e94e5977f
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50

View File

@ -425,8 +425,8 @@ void createSplits(Map<String, Set<OneBlockInfo>> nodeToBlocks,
if (completedNodes.size() == totalNodes || totalLength == 0) {
// All nodes have been walked over and marked as completed or all blocks
// have been assigned. The rest should be handled via rackLock assignment.
LOG.info("DEBUG: Terminated node allocation with : CompletedNodes: "
+ completedNodes.size() + ", size left: " + totalLength);
LOG.debug("Terminated node allocation with : CompletedNodes: {}, size left: {}",
completedNodes.size(), totalLength);
break;
}
}