#Spring stealing log messages
5 messages · Page 1 of 1 (latest)
The easiest way is to actually use SLF4J, which spring uses, so that your whole system is using a unified logging framework
if you're using lombok, you can add @Slf4j to a class to gain access to the standard static log object
Did you try SLF4JBridgeHandler.uninstall()?
https://www.slf4j.org/api/org/slf4j/bridge/SLF4JBridgeHandler.html#uninstall--
or add an exclusion of org.slf4j:jul-to-slf4j in your pom.xml