Hacker News new | ask | show | jobs
by chvid 3700 days ago
I really wish Java developers would just use java.util.logging and be done with it.
2 comments

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.
java.util.logging can be bridged into SLF4J using the jul-to-slf4j bridge.
I really wish java.util.logging was good enough to just use and be done with it. But it isn't.