Is it possible to have a typical call to java.util.logging.Logger and have it route to Logback using SLF4J? This would be nice since I wouldn't have to refactor the old jul code line by line.

EG, say we have this line:

private static Logger logger = Logger.getLogger(MahClass.class.getName());
//...
logger.info("blah blah blah");

It would be nice to configure this to call through SLF4J.

link|improve this question

There is one major benefit by biting the bullet and refactor to slf4j. Namely that you can use {} in your strings to delay toString() calls. – Thorbjørn Ravn Andersen Jun 1 '11 at 9:06
feedback

2 Answers

up vote 4 down vote accepted

Yes, it is possible. And it is very easy, you don't have to change any source code. You only must change some .jar libraries.

Look at this articles

link|improve this answer
3  
I've learned something today. Still, those phrases are quite scarry "Consequently, j.u.l. to SLF4J translation can seriously impact on the cost of disabled logging statements (60 fold increase) and a measurable impact on enabled log statements (20% overall increase)." and "Please note that for source code under your control, you really should use the slf4j-migrator. The binary-based solutions described in this page are appropriate for software beyond your control." – Anthony Accioly May 16 '11 at 17:27
@Anthony Accioly, great points. Will be sure to just use the migrator. – Zombies May 16 '11 at 17:28
feedback

As far as I know It is not possible. An alternative solution is to use the Migrator Tool. It can take care of the most tedious part of the migration (replace the imports, replace Logger.getLogger with LoggerFactory.getLogger, etc) for you.

Update: As @user179437 pointed out, it is indeed possible. Just not really recommended unless you don't have access to the source code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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