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?
Since stripes comes with commong-logging. What are my options in using stripes in a
Share
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.