I work with Spring (Core / Security / ldap and more) and logback. But for some reason, Spring doesn't get the version of loggin threshhold installed in the logback log. I also see this when I debug the source code of the springs, and I see that
final boolean debug = logger.isDebugEnabled();
Is false
Also I would like to mention (I don't know if it has anything to do with it) that the logger that uses Spring:
org.apache.commons.logging.LogFactory
org.apache.commons.logging.Log
And not SLF4j as I use
So, how should I enable the debugging level and bring logs into my SLF4J configuration.
thanks
source
share