Search Results

0
votes

Logging Java web applications?

I recommend to call log API (log4j) via slf4j. Even if you use log4j, web container or depending modules may use different log API such as Java.util.logging or Jakarta commons logging. Slf4j provid …
0
votes

Enclosing calls to debug() in if isDebugEnabled(): a good policy?

If "model" is already known, just logging it is not so expensive. But, if the "model" should be fetched just for logging as below, simplicity can be compromised. LOGGER.debug("mode …
2
votes

How can I get around this classloader hierarchy problem?

Take a look at SLF4J. Additionally, http://www.qos.ch/logging/classload …