I'm having a problem printing the stacktrace to my log file. Log4j.properties:

log4j.appender.file=org.apache.log4j.RollingFileAppender
log4j.appender.file.File=/var/log/app/application.log
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n

log4j.rootLogger=warn, file
log4j.logger.com.app=info, file
log4j.additivity.com.app=false

when I log an exception like this in my class UserGuard.java:

} catch (Exception e) {
    log.error("Uncatched error", e);
    response.setEntity(new StringRepresentation(" "));
    response.setStatus(Status.SERVER_ERROR_INTERNAL);
}

This results in my application.log :

2011-12-28 07:30:03 UserGuard [ERROR] Uncatched error
java.lang.NullPointerException

No stack trace shown. This is really annoying. Thanks!

Tried with same pom.xml and same log4j.properties on another machine and works ok. Should I think that the problem is my java version?

link|improve this question
log4j.additivity.file=false – Joop Eggen Dec 28 '11 at 12:59
Does the problem still occur if you use a different appender, such as a ConsoleAppender? Have you tried running log4j with debug output enabled so you can see if there are any errors in your log4j config? – chrisbunney Dec 28 '11 at 13:02
I did try both with no success. See my edit – Gonzalo Dec 28 '11 at 19:36
feedback

1 Answer

There is an enhancement to log4j: http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/EnhancedPatternLayout.html

link|improve this answer
Didn't find anything useful there – Gonzalo Dec 29 '11 at 13:47
feedback

Your Answer

 
or
required, but never shown

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