You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/05/23 14:41:17 UTC

svn commit: r1126473 - /commons/proper/scxml/trunk/pom.xml

Author: sebb
Date: Mon May 23 12:41:17 2011
New Revision: 1126473

URL: http://svn.apache.org/viewvc?rev=1126473&view=rev
Log:
Allow override of the logging level

Modified:
    commons/proper/scxml/trunk/pom.xml

Modified: commons/proper/scxml/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/pom.xml?rev=1126473&r1=1126472&r2=1126473&view=diff
==============================================================================
--- commons/proper/scxml/trunk/pom.xml (original)
+++ commons/proper/scxml/trunk/pom.xml Mon May 23 12:41:17 2011
@@ -206,6 +206,8 @@
     <commons.rc.version>RC1</commons.rc.version>
     <commons.jira.id>SCXML</commons.jira.id>
     <commons.jira.pid>12310492</commons.jira.pid>
+    <!-- Allow override of the logging level -->
+    <simplelog.defaultlog>fatal</simplelog.defaultlog>
   </properties> 
 
   <build>
@@ -242,7 +244,7 @@
           <systemPropertyVariables>
             <!-- Suppress most logging output -->
             <org.apache.commons.logging.Log>org.apache.commons.logging.impl.SimpleLog</org.apache.commons.logging.Log>
-            <org.apache.commons.logging.simplelog.defaultlog>fatal</org.apache.commons.logging.simplelog.defaultlog>
+            <org.apache.commons.logging.simplelog.defaultlog>${simplelog.defaultlog}</org.apache.commons.logging.simplelog.defaultlog>
           </systemPropertyVariables>
         </configuration>
       </plugin>