4

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?

Basil Musa
  • 8,198
  • 6
  • 64
  • 63

1 Answers1

7

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.

axtavt
  • 239,438
  • 41
  • 511
  • 482