Browse Source

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

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
Vidura Mudalige 7 năm trước cách đây
mục cha
commit
1e94e5977f

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

@@ -425,8 +425,8 @@ public abstract class CombineFileInputFormat<K, V>
       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;
       }
     }