0 Replies Latest reply on Aug 23, 2003 8:51 AM by ereze

    Can't see DEBUG logging printouts only INFO

    ereze

      I am not quite sure why but I cannot see DEBUG logs in the console only INFO, ERROR etc.

      It's strange though cause the log.isDebugEnabled() returns true but then the log does not apprear in the console.

      Here is my log4j (Using JBoss3.2.1 + Tomcat)

      ?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">

      <!-- ===================================================================== -->
      <!-- -->
      <!-- Log4j Configuration -->
      <!-- -->
      <!-- ===================================================================== -->

      <!-- $Id: log4j.xml,v 1.13.2.3 2003/05/02 00:53:12 slaboure Exp $ -->

      <!--
      | For more configuration infromation and examples see the Jakarta Log4j
      | owebsite: http://jakarta.apache.org/log4j
      -->

      <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">

      <!-- ================================= -->
      <!-- Preserve messages in a local file -->
      <!-- ================================= -->

      <!-- A time/date based rolling appender -->




      <!-- Rollover at midnight each day -->
      <param name="DatePattern" value="'.'yyyy-MM-dd"/>

      <!-- Rollover at the top of each hour
      <param name="DatePattern" value="'.'yyyy-MM-dd-HH"/>
      -->


      <!-- The default pattern: Date Priority [Category] Message\n -->


      <!-- The full pattern: Date MS Priority [Category] (Thread:NDC) Message\n

      -->



      <!-- A size based file rolling appender










      -->

      <!-- ============================== -->
      <!-- Append messages to the console -->
      <!-- ============================== -->






      <!-- The default pattern: Date Priority [Category] Message\n -->












      <!-- ====================== -->
      <!-- More Appender examples -->
      <!-- ====================== -->

      <!-- Buffer events and log them asynchronously

      <appender-ref ref="FILE"/>
      <appender-ref ref="CONSOLE"/>
      <appender-ref ref="SMTP"/>

      -->

      <!-- EMail events to an administrator











      -->

      <!-- Syslog events





      -->

      <!-- Log events to JMS (requires a topic to be created)





      -->

      <!-- Log events through SNMP

















      -->

      <!-- ================ -->
      <!-- Limit categories -->
      <!-- ================ -->

      <!-- Limit JBoss categories to INFO -->





      <!-- Decrease the priority threshold for the org.jboss.varia category



      -->

      <!--
      | An example of enabling the custom TRACE level priority that is used
      | by the JBoss internals to diagnose low level details. This example
      | turns on TRACE level msgs for the org.jboss.ejb.plugins package and its
      | subpackages. This will produce A LOT of logging output.






      -->

      <!--
      | Logs these events to SNMP:
      - server starts/stops
      - cluster evolution (node death/startup)
      - When an EJB archive is deployed (and associated verified messages)
      - When an EAR archive is deployed



      <appender-ref ref="TRAP_LOG"/>




      <appender-ref ref="TRAP_LOG"/>




      <appender-ref ref="TRAP_LOG"/>




      <appender-ref ref="TRAP_LOG"/>




      <appender-ref ref="TRAP_LOG"/>



      -->

      <!-- ======================= -->
      <!-- Setup the Root category -->
      <!-- ======================= -->


      <!-- I even added this line but no luck -->

      <appender-ref ref="CONSOLE"/>
      <appender-ref ref="FILE"/>


      <!-- Clustering logging -->
      <!-- Uncomment the following to redirect the org.javagroups and
      org.jboss.ha categories to a cluster.log file.













      <appender-ref ref="CLUSTER"/>



      <appender-ref ref="CLUSTER"/>

      -->

      </log4j:configuration>

      Thanks in advance,
      Erez