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?
|
feedback
|
|
If you change the logger implementation to logback, you should use a logback.xml config file (and its associated format). | |||||||||
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. | |||
|
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. | |||
|
feedback
|