ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java index ebf1344..7f92072 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java @@ -2358,12 +2358,11 @@ public static boolean isEmptyPath(JobConf job, Path dirPath, Context ctx) if (ctx != null) { ContentSummary cs = ctx.getCS(dirPath); if (cs != null) { - LOG.info("Content Summary " + dirPath + "length: " + cs.getLength() + " num files: " - + cs.getFileCount() + " num directories: " + cs.getDirectoryCount()); + LOG.debug("Content Summary cached for: {} length: {} num files: {} num directories: {}", + dirPath, cs.getLength(), cs.getFileCount(), cs.getDirectoryCount()); return (cs.getLength() == 0 && cs.getFileCount() == 0 && cs.getDirectoryCount() <= 1); - } else { - LOG.info("Content Summary not cached for " + dirPath); } + LOG.debug("Content Summary not cached for: {}", dirPath); } return isEmptyPath(job, dirPath); }