You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by su...@apache.org on 2015/07/20 22:12:46 UTC

[36/50] [abbrv] hive git commit: HIVE-11243: Changing log level in Utilities.getBaseWork(Nemon Lou, reviewed by Ferdinand Xu)

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/spark
Commit: e2ee458d8ef417785f1e9ebfca303a9d15fee8a8
Parents: e61a1a9
Author: Ferdinand Xu <ch...@intel.com>
Authored: Thu Jul 16 04:06:05 2015 -0400
Committer: Ferdinand Xu <ch...@intel.com>
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) {