You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/08/23 21:46:19 UTC

svn commit: r434140 - /incubator/servicemix/trunk/apache-servicemix/src/main/release/conf/log4j.xml

Author: gnodet
Date: Wed Aug 23 12:46:18 2006
New Revision: 434140

URL: http://svn.apache.org/viewvc?rev=434140&view=rev
Log:
Log file in distribution should not log at DEBUG level by default

Modified:
    incubator/servicemix/trunk/apache-servicemix/src/main/release/conf/log4j.xml

Modified: incubator/servicemix/trunk/apache-servicemix/src/main/release/conf/log4j.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/apache-servicemix/src/main/release/conf/log4j.xml?rev=434140&r1=434139&r2=434140&view=diff
==============================================================================
--- incubator/servicemix/trunk/apache-servicemix/src/main/release/conf/log4j.xml (original)
+++ incubator/servicemix/trunk/apache-servicemix/src/main/release/conf/log4j.xml Wed Aug 23 12:46:18 2006
@@ -30,7 +30,7 @@
 
     <appender name="FILE" class="org.apache.log4j.FileAppender">
         <param name="threshold" value="DEBUG"/>
-        <param name="File" value="servicemix.log"/>
+        <param name="File" value="data/log/servicemix.log"/>
         <layout class="org.apache.log4j.PatternLayout">
             <param name="ConversionPattern" value="%d{ABSOLUTE} | %-5p | %-10t | %-24.24c{1} | %-30.30C %4L | %m%n"/>
         </layout>
@@ -39,13 +39,12 @@
     <logger name="org.apache">
         <level value="WARN"/>
     </logger>
-
     <logger name="org.springframework">
         <level value="WARN"/>
     </logger>
-
     <logger name="org.apache.servicemix">
-        <level value="DEBUG"/>
+        <!-- To enable debug logging, replace the INFO by DEBUG -->
+        <level value="INFO"/>
     </logger>
     <logger name="org.apache.servicemix.jbi.config">
         <level value="WARN"/>