According to the Spring Boot documentation, it is possible to set the logging level of multiple logging framework (jul, slf4j, etc.) just by using the Spring Boot Logging Starter and setting appropriate logging.level in application properties. Everything works fine except that the library I use is logging with jul and log level Level.FINER. However, Level.INFO is properly logged.
I set level in application.properties to:
logging.level.=TRACE
which should log everything according to SLF4JBridgeHandler.
Am I something missing or is it a problem of logback (used by the starter) rather my misunderstanding?