I have a project using common-logging and log4j, I want to change to use SLF4J + Logback. Is there any way to use existing log4j.xml for Logback?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 3 down vote accepted

If you change the logger implementation to logback, you should use a logback.xml config file (and its associated format).

link|improve this answer
1  
@mavlarn and if your code uses SLF4j than configuration is the only thing you'd have to change – Arnon Rotem-Gal-Oz Dec 22 '11 at 10:26
2  
In Logback web there is a log4j.properties to logback.xml translator => logback.qos.ch/translator – polypiel Dec 22 '11 at 11:35
feedback

There exists a log4j.properties to logback.xml migrator available online: http://logback.qos.ch/translator/

For log4j.xml files, there structure of logback.xml files is very similar. Thus, it should not be hard to migrate your log4j.xml to logback.xml manually. If you run into trouble please post on the logback-user mailing list.

link|improve this answer
feedback

You need to use the slf4j api compatible replacements for commons-logging and log4j.

http://www.slf4j.org/legacy.html

basically you need to make sure that you have jcl-over-slf4j.jar and log4j-over-slf4j on the classpath and remove any copies of commons-logging.jar and log4j.jar. If you use maven, you'll probably want to add a lot of exclusions for this on libraries that pull these in.

I have no experience with logback so see above comment from polypiel for the log4j translator.

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.