HIVE-11243: Changing log level in Utilities.getBaseWork(Nemon Lou, reviewed by Ferdinand Xu)
Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/e2ee458d Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/e2ee458d Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/e2ee458d Branch: refs/heads/hbase-metastore Commit: e2ee458d8ef417785f1e9ebfca303a9d15fee8a8 Parents: e61a1a9 Author: Ferdinand Xu <[email protected]> Authored: Thu Jul 16 04:06:05 2015 -0400 Committer: Ferdinand Xu <[email protected]> Committed: Thu Jul 16 04:06:05 2015 -0400 ---------------------------------------------------------------------- ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/e2ee458d/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java ---------------------------------------------------------------------- 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 afecb1e..d8e463d 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 @@ -453,7 +453,7 @@ public final class Utilities { return gWork; } catch (FileNotFoundException fnf) { // happens. e.g.: no reduce work. - LOG.info("File not found: " + fnf.getMessage()); + LOG.debug("File not found: " + fnf.getMessage()); LOG.info("No plan file found: "+path); return null; } catch (Exception e) {
