You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by ha...@apache.org on 2012/07/15 16:32:27 UTC

svn commit: r1361706 - in /incubator/oozie/trunk: release-log.txt tools/src/main/java/org/apache/oozie/tools/OozieDBCLI.java

Author: harsh
Date: Sun Jul 15 14:32:27 2012
New Revision: 1361706

URL: http://svn.apache.org/viewvc?rev=1361706&view=rev
Log:
OOZIE-900 Indicate that the exception thrown from the db-cli during an error is for debug purposes (harsh)

Modified:
    incubator/oozie/trunk/release-log.txt
    incubator/oozie/trunk/tools/src/main/java/org/apache/oozie/tools/OozieDBCLI.java

Modified: incubator/oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1361706&r1=1361705&r2=1361706&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Sun Jul 15 14:32:27 2012
@@ -1,5 +1,6 @@
 -- Oozie 3.3.0 release (trunk - unreleased)
 
+OOZIE-900 Indicate that the exception thrown from the db-cli during an error is for debug purposes (harsh)
 OOZIE-865 ForkJoin validator checks total lengths of forks vs. joins instead of actual paths (rkanter via tucu)
 OOZIE-905 Clarify and improve Oozie logging configuration and streaming (rkanter via tucu)
 OOZIE-890 Support for map-reduce in OozieCLI (britt via virag)

Modified: incubator/oozie/trunk/tools/src/main/java/org/apache/oozie/tools/OozieDBCLI.java
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/tools/src/main/java/org/apache/oozie/tools/OozieDBCLI.java?rev=1361706&r1=1361705&r2=1361706&view=diff
==============================================================================
--- incubator/oozie/trunk/tools/src/main/java/org/apache/oozie/tools/OozieDBCLI.java (original)
+++ incubator/oozie/trunk/tools/src/main/java/org/apache/oozie/tools/OozieDBCLI.java Sun Jul 15 14:32:27 2012
@@ -137,6 +137,7 @@ public class OozieDBCLI {
             System.err.println();
             System.err.println("Error: " + ex.getMessage());
             System.err.println();
+            System.err.println("Stack trace for the error was (for debug purposes):");
             System.err.println("--------------------------------------");
             ex.printStackTrace(System.err);
             System.err.println("--------------------------------------");