...
- Once you've done this, you can modify your log4j.properties file. The simplest option is just to modify the level of the rootLogger
- Change log4j.rootLogger=INFO, StdOut to log4j.rootLogger=DEBUG, StdOut to see all the DEBUG level log statements the code issues
- If you want to get fancier, you can do something like add this line to see all the DEBUG level statements for the labor module: log4j.logger.org.kuali.module.labor=DEBUG
- Or, you could combine the two approaches by setting log4j.rootLogger=ERROR, StdOut and also adding the additional logger (log4j.logger.org.kuali.module.labor=DEBUG). This will only log statements at error and above for anything outside of the labor packages and log any statements issued by classes in the labor packages at debug.
...