Skip to content

Commit 1e94e59

Browse files
Vidura Mudaligeaajisaka
Vidura Mudalige
authored andcommitted
MAPREDUCE-7063. Fix log level inconsistency in CombineFileInputFormat.java
Signed-off-by: Akira Ajisaka <[email protected]>
1 parent 2c87ec5 commit 1e94e59

File tree

1 file changed

+2
-2
lines changed
  • hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/input

1 file changed

+2
-2
lines changed

hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/input/CombineFileInputFormat.java

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

0 commit comments

Comments
 (0)