> WARN: The method class o.a.commons.logging.impl.SLF4JLogFactory#release() was invoked.
> WARN: Please see http://www.slf4j.org/codes.html#release for an explanation.
Notwithstanding the "release" anchor in the URL displayed by SLF4J, the error has nothing to do with SLF4J releases. If you read the contents of the explanation, you should notice that SLF4J warns about calling the release() method in commons-logging. The jcl-over-slf4j module, a binary-compatible replacement for commons-logging.jar never calls the LogFactory.release() method itself. However, for some reason this method is being called and SLF4J is warning you about it. It is just a warning that you can safely ignore. -- Ceki Gülcü Logback: The reliable, generic, fast and flexible logging framework for Java. http://logback.qos.ch
