You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2016/12/08 19:07:38 UTC

[2/2] hive git commit: HIVE-15381 : don't log the callstack for reduce.xml-doesn't-exist (Sergey Shelukhin, reviewed by Ashutosh Chauhan)

HIVE-15381 : don't log the callstack for reduce.xml-doesn't-exist (Sergey Shelukhin, reviewed by Ashutosh Chauhan)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/777477f2
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/777477f2
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/777477f2

Branch: refs/heads/master
Commit: 777477f25060f35631a20b7d2baef1df6da7c3c0
Parents: 65d8fae
Author: Sergey Shelukhin <se...@apache.org>
Authored: Thu Dec 8 11:06:04 2016 -0800
Committer: Sergey Shelukhin <se...@apache.org>
Committed: Thu Dec 8 11:06:04 2016 -0800

----------------------------------------------------------------------
 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/777477f2/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 e8f50f2..98c6c76 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
@@ -461,7 +461,7 @@ public final class Utilities {
       return gWork;
     } catch (FileNotFoundException fnf) {
       // happens. e.g.: no reduce work.
-      LOG.debug("No plan file found: " + path, fnf);
+      LOG.debug("No plan file found: " + path + "; " + fnf.getMessage());
       return null;
     } catch (Exception e) {
       String msg = "Failed to load plan: " + path;