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?
I like Stripes but I'm using sl4j/logback for logging, what are my options?
436 views Asked by Basil Musa At
1
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.