I'm making an application and I note that in my dependencies I have many JARs for logging library (commons-logging, log4j, slf4j)...but what do you think is the best approach? Why I should use the slf4j instead of the log4j or the commons-logging?
|
|
Logging under Java is currently quite confusing primarily because the logging framework introduced with Java 1.4 was not up to par with the then de-facto standard log4j. Unification attempts made it even more confusing. The SLF4j API was designed to have a common, simple API to use in future code, and then a lot of helping code was written to make it easy to use with existing logging frameworks. Note that the SLF4J author has a strong preference towards the logback logging framework (which is a fork of log4j), just so you know. These days I would recommend that you
The primary benefit of the slf4j API is that you can use the
syntax delaying the stringification of a and b until later in the process so the "log.ifDebugEnable()" call so typical of log4j can be done inside slf4j and avoided in your code. This gives much cleaner code when logging defensively (as I frequently have to). |
||||
|
|
|
I think you are comparing wrong things:
You can even combine all three:
|
|||||||
|