I\'m currently observing that a 3rd party library (namely restfb) is using java.util.logging and I\'m seeing those logs end up in STDOUT even though I don\'t have an SLF4J c
I use SLF4J and new Postgres driver 42.0.0
According changelog it use java.util.logging
To have driver logs it is enough:
Add jul-to-slf4j bridge:
org.slf4j jul-to-slf4j ${slf4j.version} runtime
Add in logback.xml (logback-test.xml)
true `
Add in code
static { SLF4JBridgeHandler.install(); }