[jboss-cvs] JBossAS SVN: r90017 - trunk/server/src/etc/conf/all.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jun 9 19:44:22 EDT 2009


Author: smarlow at redhat.com
Date: 2009-06-09 19:44:22 -0400 (Tue, 09 Jun 2009)
New Revision: 90017

Modified:
   trunk/server/src/etc/conf/all/jboss-log4j.xml
Log:
JBAS-7005: limit logging of classes used during startup.  Comment out new category limits.

Modified: trunk/server/src/etc/conf/all/jboss-log4j.xml
===================================================================
--- trunk/server/src/etc/conf/all/jboss-log4j.xml	2009-06-09 23:41:24 UTC (rev 90016)
+++ trunk/server/src/etc/conf/all/jboss-log4j.xml	2009-06-09 23:44:22 UTC (rev 90017)
@@ -174,19 +174,64 @@
    
    <!-- =============================================== -->
    <!-- Limit categories                                -->
-   <!-- After enabling "trace" at root logger level,    -->
+   <!-- If enabling "trace" at root logger level,       -->
    <!-- also enable "trace" for the limit category      -->
+   <!-- that you are interested in (or comment category)-->
    <!-- =============================================== -->
 
-   <category name="org.jboss.web">
-     <priority value="INFO" />
+   <!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
+   <category name="org.apache">
+      <priority value="INFO"/>
    </category>
-
-   <category name="com.arjuna">
-     <priority value="INFO" />
+   
+   <!-- Limit the jacorb category to WARN as its INFO is verbose -->
+   <category name="jacorb">
+      <priority value="WARN"/>
    </category>
+   
+   <!-- Set the logging level of the JSF implementation that uses
+      | java.util.logging. The jdk logging levels can be controlled
+      | through the org.jboss.logging.log4j.JDKLevel class that
+      | in addition to the standard log4j levels it adds support for
+      | SEVERE, WARNING, CONFIG, FINE, FINER, FINEST
+   -->
+   <category name="javax.enterprise.resource.webcontainer.jsf">
+     <priority value="INFO" class="org.jboss.logging.log4j.JDKLevel"/>
+   </category>
+   
+   <!-- Limit the org.jgroups category to WARN as its INFO is verbose -->
+   <category name="org.jgroups">
+      <priority value="WARN"/>
+   </category>
+   
+   <!-- Limit the org.quartz category to INFO as its DEBUG is verbose -->
+   <category name="org.quartz">
+      <priority value="INFO"/>
+   </category>
+   
+   <!-- Limit the com.sun category to INFO as its FINE is verbose -->
+   <category name="com.sun">
+      <priority value="INFO"/>
+   </category>
+   
+   <!-- Limit the sun category to INFO as its FINE is verbose -->
+   <category name="sun">
+      <priority value="INFO"/>
+   </category>
+   
+   <!-- Limit the javax.xml.bind category to INFO as its FINE is verbose -->
+   <category name="javax.xml.bind">
+      <priority value="INFO"/>
+   </category>
+   
+   <!-- Limit JBoss categories
+   <category name="org.jboss">
+      <priority value="INFO"/>
+   </category>
+   -->
 
-   <category name="org.hibernate">
+   <!-- Or limit individual JBoss categories
+   <category name="org.jboss.web">
      <priority value="INFO" />
    </category>
 
@@ -318,10 +363,6 @@
      <priority value="INFO" />
    </category>
 
-   <category name="org.ajax4jsf">
-     <priority value="INFO" />
-   </category>
-
    <category name="org.jboss.ejb">
      <priority value="INFO" />
    </category>
@@ -393,91 +434,60 @@
    <category name="org.jboss.managed">
      <priority value="INFO" />
    </category>
+   -->
 
-   <category name="org.ajax4jsf">
+   <!-- Limit Arjuna transaction manager
+   <category name="com.arjuna">
      <priority value="INFO" />
    </category>
+   -->
 
-   <category name="org.jnp">
+   <!-- Limit Hibernate 
+   <category name="org.hibernate">
      <priority value="INFO" />
    </category>
-   
-   <!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
-   <category name="org.apache">
-      <priority value="INFO"/>
-   </category>
-   
-   <!-- Limit the jacorb category to WARN as its INFO is verbose -->
-   <category name="jacorb">
-      <priority value="WARN"/>
-   </category>
-   
-   <!-- Set the logging level of the JSF implementation that uses
-      | java.util.logging. The jdk logging levels can be controlled
-      | through the org.jboss.logging.log4j.JDKLevel class that
-      | in addition to the standard log4j levels it adds support for
-      | SEVERE, WARNING, CONFIG, FINE, FINER, FINEST
    -->
-   <category name="javax.enterprise.resource.webcontainer.jsf">
-     <priority value="INFO" class="org.jboss.logging.log4j.JDKLevel"/>
+
+   <!-- Limit Ajax4jsf
+   <category name="org.ajax4jsf">
+     <priority value="INFO" />
    </category>
-   
-   <!-- Limit the org.jgroups category to WARN as its INFO is verbose -->
-   <category name="org.jgroups">
-      <priority value="WARN"/>
-   </category>
-   
-   <!-- Limit the org.quartz category to INFO as its DEBUG is verbose -->
-   <category name="org.quartz">
-      <priority value="INFO"/>
-   </category>
-   
-   <!-- Limit the com.sun category to INFO as its FINE is verbose -->
-   <category name="com.sun">
-      <priority value="INFO"/>
-   </category>
-   
-   <!-- Limit the sun category to INFO as its FINE is verbose -->
-   <category name="sun">
-      <priority value="INFO"/>
-   </category>
-   
-   <!-- Limit the javax.xml.bind category to INFO as its FINE is verbose -->
-   <category name="javax.xml.bind">
-      <priority value="INFO"/>
-   </category>
-   
-   <!-- Limit JBoss categories
-   <category name="org.jboss">
-      <priority value="INFO"/>
-   </category>
    -->
 
+   <!-- Limit JNP
+   <category name="org.jnp">
+     <priority value="INFO" />
+   </category>
+  -->  
+
+
    <!-- Limit the JSR77 categories -->
    <category name="org.jboss.management">
       <priority value="INFO"/>
    </category>
 
-   <!-- Limit the verbose facelets compiler -->
+   <!-- Limit the verbose facelets compiler 
    <category name="facelets.compiler">
       <priority value="WARN"/>
    </category>
+   -->
    
-   <!-- Limit the verbose ajax4jsf cache initialization -->
+   <!-- Limit the verbose ajax4jsf cache initialization
    <category name="org.ajax4jsf.cache">
       <priority value="WARN"/>
    </category>
-   
-   <!-- Limit the verbose embedded jopr categories -->
+   -->
+   <!-- Limit the verbose embedded jopr categories
    <category name="org.rhq">
       <priority value="WARN"/>
    </category>
-   
-   <!-- Limit the verbose seam categories -->
+   -->
+   <!-- Limit the verbose seam categories
    <category name="org.jboss.seam">
       <priority value="WARN"/>
    </category>
-   
+   -->
+
    <!-- Show the evolution of the DataSource pool in the logs [inUse/Available/Max]
    <category name="org.jboss.resource.connectionmanager.JBossManagedConnectionPool">
      <priority value="TRACE"/>




More information about the jboss-cvs-commits mailing list