I am thinking off migrating a java 1.4.2 project from log4j to slf4j. It is the advantage of parameterised logging and the code clarity (no need if log.isdebug..) That is drawing me to such considerations.

Are there performance overheads of converting to slf4j?

Last time I checked if I could use logback, it has a requirement on the jdk which mandates it to be att least 1.5 which is why I am considering slf4j and log4j.

link|improve this question

1  
Did you so some performance testing and compared the result? – The Elite Gentleman Aug 17 '11 at 14:12
logback can be retroweaved to 1.4. I did that and it worked but I would recommend extensive testing to be certain. Note you can also use standard JDK14 logging with slf4j. – Thorbjørn Ravn Andersen Aug 17 '11 at 14:18
feedback

1 Answer

up vote 3 down vote accepted

No, you should get a performance advantage from slf4j if anything, because it defers turning its parameters to strings until it has checked that the message won't be filtered out by log level.

link|improve this answer
That's Logback, not slf4j? – Rulmeq Aug 17 '11 at 14:33
@Rulmeq: it's slf4j, I added a link to the documentation – Nathan Hughes Aug 17 '11 at 14:41
1  
Thanks, I always thought you needed logback, so I'd been avoiding migrating to SL4J (can't really use a 0.x anything in production without spending your life explaining to the higher ups). This is good news :) – Rulmeq Aug 17 '11 at 14:52
feedback

Your Answer

 
or
required, but never shown

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