timbre

acron 2020-02-05T10:34:54.000400Z

Does anyone have any experience of intercepting java.util.logging log writes? I would like all my logs to go via timbre and I am aware of libraries like slf4j-timbre, but iiuc I am dealing with java.util.logging, not SLF4J and I can't seem to find an equivalent library

tanzoniteblack 2020-02-05T17:44:15.001200Z

@acron, if you combine slf4j-timbre with [org.slf4j/jul-to-slf4j "1.7.30"] (which is talked about under https://github.com/fzakaria/slf4j-timbre#other-logging-frameworks ), java.util.logging messages will be sent to slf4j, which will then be logged through timbre

acron 2020-02-05T17:50:44.001700Z

Yikes, thanks