| Author |
log4j: Why aren't my debug statements showing?
|
Dave Alvarado
Ranch Hand
Joined: Jul 02, 2008
Posts: 434
|
|
Hi,
I'm using JBoss 5.1 AS (on Mac 10.5.6, Java 1.6) and running a web application (WAR file). I have this log4j.xml file in my WEB-INF/classes directory:
But this statement (from the myco.galc.capitol.tours.CapitolToursController class) produces no output in any of my log files ...
What am I doing wrong in my log4j configuration or where else should it be adjusted? Thanks, - Dave
|
 |
Jaikiran Pai
Marshal
Joined: Jul 20, 2005
Posts: 8145
|
|
|
What is "LogFactory" and "Log". Those don't belong to log4j. Are you using some other logging framework atop log4j?
|
[My Blog] [JavaRanch Journal]
|
 |
Dave Alvarado
Ranch Hand
Joined: Jul 02, 2008
Posts: 434
|
|
The imports for those are
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
But as I said, info statements and above are getting written to the logs so I'm wondering why the debug statements are not even though the log4j configuration explicitly lists debug. - Dave
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
So you have Apache Commons logging set up to use log4j as its output? Perhaps it has some configuration you have to set up to control the logging level as well.
|
 |
 |
|
|
subject: log4j: Why aren't my debug statements showing?
|
|
|