Logging extension for existing logging frameworks that "wraps" them into the static method calls instead of the factories and other non-necessary administration things.
Main principles: SIMPLICITY static method calls instead of factories minimal configuring through the code transparent to the selected logging implementation
Let's look an example:
The traditional logging with log4j like this:
Logger LOG = Logger.getLogger(Whatever.class); ... if (LOG.isDebug())
{ LOG.debug ("someThing"); } The goal is to reduce that to: