You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ra...@apache.org on 2010/08/23 03:25:36 UTC

svn commit: r987970 - /commons/proper/digester/trunk/pom.xml

Author: rahul
Date: Mon Aug 23 01:25:35 2010
New Revision: 987970

URL: http://svn.apache.org/viewvc?rev=987970&view=rev
Log:
Suppress most logging output during build.

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

Modified: commons/proper/digester/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/pom.xml?rev=987970&r1=987969&r2=987970&view=diff
==============================================================================
--- commons/proper/digester/trunk/pom.xml (original)
+++ commons/proper/digester/trunk/pom.xml Mon Aug 23 01:25:35 2010
@@ -217,6 +217,17 @@
             <exclude>**/TestRuleSet.java</exclude>
             <exclude>**/Test*$*.java</exclude>
           </excludes>
+          <systemProperties>
+            <!-- Suppress most logging output -->
+            <property>
+              <name>org.apache.commons.logging.Log</name>
+              <value>org.apache.commons.logging.impl.SimpleLog</value>
+            </property>
+            <property>
+              <name>org.apache.commons.logging.simplelog.defaultlog</name>
+              <value>fatal</value>
+            </property>
+          </systemProperties>
         </configuration>
       </plugin>