[Pkg-ANN] LoggingExtras.jl

This is a quick little package I threw together to see about extending the logging functionality of julia,
to do more or less arbitrary log routing.
So you can send some logs to the console and some to one file, some to another, and some to both.

Diagram showing low logs can route

The File Logger, I do not think is particularly nice, as a file logger,
since it uses more than 1 line per log,
which makes it un-grep-able.
But it was very easy to make since it just wraps the Base.CoreLogging.SimpleLogger.

I am impressed out how easy doing this kinda thing is in the new logging framework.

https://github.com/oxinabox/LoggingExtras.jl

3 Likes