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?

link|improve this question

65% accept rate
1  
see stackoverflow.com/questions/4516932/… – ron Jul 14 '11 at 9:27
so it is useful to make complicate a simple thing like logging...perfect :D – rascio Jul 14 '11 at 9:29
feedback

2 Answers

up vote 3 down vote accepted

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, just so you know.

These days I would recommend that you

  • code against the slf4j API
  • use bridges to let existing code using other frameworks transparently use the slf4j API.
  • use a SLF4J backend to do the actual logging. Several backends exist. If you are familiar with log4j it will do nicely. The necessary binding code is in the SLF4J distribution.

The primary benefit of the slf4j API is that you can use the

log.debug("Expensive objects a={} b={}", a, b);

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).

link|improve this answer
feedback

I think you are comparing wrong things:

  • log4j is an actual logging system
  • slf4j is a logging facade, it needs a logging system behind, this could for example be log4j. It also supports other loggers.
  • commons-logging: The same is true here, it is also a logging facade. It uses log4j, the jdk1.4 logging system and a simple built in logger, whatever is available.

You can even combine all three: slf4j can forward the messages to commons-logging and it can forward again to log4j.

link|improve this answer
1  
So why I want to choose commons-logging instead of slf4j? Why someone made the slf4j if already exists the commons-logging? – rascio Jul 14 '11 at 9:32
It is said, that slf4j is more reliable because it does not try to mess around with class loading like commons-logging does. But, I'm not a expert here, perhaps you want to ask this on another question. – theomega Jul 14 '11 at 9:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.