what are the advantages of log4j and slf4j...

link|improve this question

74% accept rate
feedback

3 Answers

up vote 15 down vote accepted

You can think of slf4j as a big "interface" that needs an implementation. So, just using slf4j standalone will not get you any logging (aside from using slf4j-simple, which is a bundled mini implementation that can only log to console).

So, what can you use as an implementation? log4j is one example. Why would you want to use slf4j then? Because you can use this one interface and then swap implementations if needed.

What are the available backends that can be used?

  • log4j
  • java.util.logging
  • commons logging
  • logback

I'd suggest using Logback. It's a better log4j.

link|improve this answer
How is Logback better than Log4J? Logging dummies for developers :) – The Elite Gentleman Jul 14 '11 at 9:51
@The Elite Gentleman: here are many reasons why Logback is better. By the author of log4j and Logback. You can't really argue with that. – darioo Jul 15 '11 at 16:14
feedback

First you should not compare log4j and slf4j. You should rather compare jakarta commons logging and slf4j since both are the thin logging facades.

Slf4j can use log4j as an implementation of log system. But if you are going in this direction better use logback.

Bottom line: use logback as a log implementation indirectly through logging facade skf4j. This is the most modern approach these days.

link|improve this answer
feedback

The only feature I care about in slf4j is that you can replace:

if(LOG.isDebugEnabled()){
  LOG.debug("hello " + a + " world" + b);
}

with

LOG.debug("hello {} world {}", a, b);

in slf4j. Which makes the logging code a bit more readable and has the same performance if you do not log in debug mode.

link|improve this answer
That's a nice feature. I myself prefer varags over placeholders. It is also faster. Take a look how MentaLog does that: mentalog.soliveirajr.com/posts/list/39.page – Sergio Oliveira Jr. Sep 24 '11 at 18:28
feedback

Your Answer

 
or
required, but never shown

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