I like Stripes but I'm using sl4j/logback for logging, what are my options?

441 views Asked by At

Since stripes comes with commong-logging. What are my options in using stripes in a web applications without commons logging. How can I replace it with sl4j logging library?

1

There are 1 answers

3
axtavt On BEST ANSWER

In order to redirect Commons Logging log to SLF4J, you need to remove Commons Logging from the classpath and add JCL-over-SLF4J bridge.

Here you can find a solution of similar problem for Spring: Logging Dependencies in Spring.