MicroLogging.jl
MicroLogging.jl copied to clipboard
A simple logging API for julia
It strikes me that the current design of `AbstractLogger` is very sink-centric; every logger is a sink, and one cannot pass around log filter pipelines as standalone objects. There seems...
Hi, I often use the Logging infrastructure that is part of 1.0 stdlib. I'd like to ask what is the purpose of MicroLogging.jl in the context of Logging being part...
Let's say I have the following codebase, consisting of three files, `modulea.jl`, `moduleb.jl` and `main.jl` ```julia # modulea.jl using Logging module ModuleA export hello function hello() @info "hello" end end...
Here's a todo list of design issues. ## Logging macros * [x] Lightweight `@show` like syntax (Added as `@info "msg" expr` for any `expr`, to give a keyword named `Symbol(expr)`)...
Hi there, I'm using Julia 0.6 and I'm starting a new project. Since `MicroLogging` forms the basis of Base logging for Julia 0.7 and beyond, I figure it's best to...