I've got a web-app deployed to a Tomcat 7 server. My application uses log4j and a file appender. However, not all logging messages are getting written to the file.

On my classpath, I have: log4j-1.2.14.jar slf4j-api-1.6.1.jar slf4j-log4j12-1.6.1.jar

My log4j.properties file is working fine on my local machine and is deploy properly.

I see application generated error messages being written to catalina.out that are not getting written to my log4j log. The log messages in catalina.out look to be coming from some other logging framework because the output pattern is in a different format than my log4j pattern. The logging that I'm seeing in the catalina.log is like:

Nov 4, 2011 11:05:31 AM org.apache.myfaces.shared_impl.util.StateUtils reconstruct SEVERE

And my log4j pattern is like: 2011-11-03 16:42:09,336 ["http-bio-8080"-exec-13] ERROR

Some logging appears in my log4j file log, but not all of it. From what I've read, slf4j just needs those jars for it to funnel log output. Any ideas?

link|improve this question
You might try using the slf4j jar named "log4j-over-slf4j-1.6.1.jar" instead of the log4j jar named "log4j-1.2.14.jar" – DwB Nov 4 '11 at 16:34
log4j-over-slf4j.jar is a log4j replacement. The asker does not want to replace log4j. DwB, I suggest that you delete your comment as it is misleading. – Ceki Nov 4 '11 at 21:03
feedback

2 Answers

up vote 3 down vote accepted

try including the jcl-over-slf4j as a dependency. myfaces is probably using commons-logging.

check the slf4j docs: http://www.slf4j.org/legacy.html#jcl-over-slf4j

link|improve this answer
ah, not commons-logging but even java util logging, see ceki's answer – Stefan De Boey Nov 5 '11 at 19:51
feedback

It looks like the StateUtils class is using java.util.logging (jul). It stands to reason that other myfaces classes also use jul. Thus, you would probably want to funnel jul logs through SLF4J. Have a look at bridging legacy APIs, in particular the jul-to-slf4j bridge.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.