what are the advantages of log4j and slf4j...
|
feedback
|
|
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?
I'd suggest using Logback. It's a better log4j. | |||||
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. | |||
|
feedback
|
|
The only feature I care about in slf4j is that you can replace:
with
in slf4j. Which makes the logging code a bit more readable and has the same performance if you do not log in debug mode. | ||||
feedback
|