Hacker News new | ask | show | jobs
by tadfisher 3700 days ago
That's an all-or-nothing solution. As third-party libraries often use alternative loggers, and java.util.logging cannot be substituted on the classpath (because of the java.* namespace), then using JUL locks consumers out of using their own logging facade as it cannot be bridged to SLF4J.
1 comments

java.util.logging can be bridged into SLF4J using the jul-to-slf4j bridge.