You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by vi...@apache.org on 2012/08/22 21:28:24 UTC

svn commit: r1376203 - in /incubator/oozie/trunk: core/src/main/java/org/apache/oozie/command/XCommand.java release-log.txt

Author: virag
Date: Wed Aug 22 19:28:24 2012
New Revision: 1376203

URL: http://svn.apache.org/viewvc?rev=1376203&view=rev
Log:
OOZIE-918 Changing log level from DEBUG to TRACE for trivial log statements (mona via virag)

Modified:
    incubator/oozie/trunk/core/src/main/java/org/apache/oozie/command/XCommand.java
    incubator/oozie/trunk/release-log.txt

Modified: incubator/oozie/trunk/core/src/main/java/org/apache/oozie/command/XCommand.java
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/core/src/main/java/org/apache/oozie/command/XCommand.java?rev=1376203&r1=1376202&r2=1376203&view=diff
==============================================================================
--- incubator/oozie/trunk/core/src/main/java/org/apache/oozie/command/XCommand.java (original)
+++ incubator/oozie/trunk/core/src/main/java/org/apache/oozie/command/XCommand.java Wed Aug 22 19:28:24 2012
@@ -266,10 +266,10 @@ public abstract class XCommand<T> implem
                         LOG.debug("Command [{0}] key [{1}]  already executed for [{2}]", getName(), getEntityKey(), this.toString());
                         return null;
                     }
-                    LOG.debug("Load state for [{0}]", getEntityKey());
+                    LOG.trace("Load state for [{0}]", getEntityKey());
                     loadState();
                     LOG = XLog.resetPrefix(LOG);
-                    LOG.debug("Precondition check for command [{0}] key [{1}]", getName(), getEntityKey());
+                    LOG.trace("Precondition check for command [{0}] key [{1}]", getName(), getEntityKey());
                     verifyPrecondition();
                     LOG.debug("Execute command [{0}] key [{1}]", getName(), getEntityKey());
                     Instrumentation.Cron executeCron = new Instrumentation.Cron();

Modified: incubator/oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1376203&r1=1376202&r2=1376203&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Wed Aug 22 19:28:24 2012
@@ -1,5 +1,6 @@
 -- Oozie 3.3.0 release (trunk - unreleased)
 
+OOZIE-918 Changing log level from DEBUG to TRACE for trivial log statements (mona via virag)
 OOZIE-957 TestStatusTransitService and TestCoordKillXCommand are failing randomly; replace Thread.sleep() (rkanter via tucu)
 OOZIE-477 Adding configurable filesystem support instead of hardcoded "hdfs" (mayank, mona via tucu)
 OOZIE-906 Show runtime job DAG visually in Oozie console/dashboard (vaidya via virag)