log4j

TwitterFacebook
Get flash to fully experience Pearltrees
Demos Output all message types log.debug( 'this is a debug message' ); log.info( 'this is an info message' ); log.warn( 'this is a warning message' ); log.error( 'this is an error message' );

Blackbird - Open Source JavaScript Logging Utility

http://www.gscottolson.com/blackbirdjs/
http://hanuska.blogspot.com/2008/11/grails-logging.html Configuring logging in Grails is not as simple one would think. Grails uses Log4J as its logging framework. Log4J configuration is stored in the log4j.properties file.

Grails Logging

This tutorial explains how to set up log4j with email, files and stdout. It compares XML to properties configuration files, shows how to change LogLevels for a running application. Furthermore, we explain best practices on logging and exception handling. http://www.laliluna.de/articles/posts/log4j-tutorial.html

Log4j tutorial with Tomcat examples

Annotated logging interceptor with Spring AOP

http://internna.blogspot.com/2007/01/one-of-questions-that-arise-time-and.html One of the questions that arise time and again during project development is logging. As its already known a good way to handle it, is using aspects and our favorite Java framework, Spring . If you search a little you can find several tutorials about logging and AOP but, at least in my opinion, their authors were more interested in explaining AOP than resolving the logging concern.