In running some JUnit tests I start with the following to set up Log4J:
BasicConfigurator.configure()
I'm then calling the following via Commons Logging:
LogFactory.getLogger(this.getClass()).fatal(exception)
This doesn't print stack traces though (only the exception message).
I need to know what steps are necessary to print stack traces via the simplified logging setup used in JUnit tests? I would prefer not to have to fully configure Log4J just for JUnit tests, but if I must, let me know.