2 Replies Latest reply on Oct 29, 2007 2:13 AM by terryb

    seam log.debug and log.trace

    terryb

      I do not get any out by above calls, even though isTraceEnabled and isDebugEnabled tell they are set to true. Anyone got any clues? The log.info() prints ok. Seam 1.2.1GA.

        • 1. Re: seam log.debug and log.trace
          thejavafreak

          You must set your logging level for the console to be DEBUG. The default for JBoss AS is setted to INFO. INFO is higher that DEBUG. So DEBUG levels won't be printed out.

          Go edit your $JBOSS_HOME/server/default/conf/jboss-log4j.xml
          Find the CONSOLE appender and set the threshold to DEBUG.

          But this is not recommended since JBoss AS has a lot of debug log statements. Another way is to set log level in your application to INFO.

          • 2. Re: seam log.debug and log.trace
            terryb

            thanks. I was using log.debug in try catch block to expecting it print exception stack trace. I guess I will need to specifically print stack trace in catch block when needed and keep AS logging to info.