arachne.log
Common logging layer for all Arachne apps and modules.
Currently delegates to Pedestal logging, as that does pretty much everything we need. However,
we will not use that directly, just in case anything changes, or we want to add additional
features in the future.
All log macros take vararg sequence of `keyvals`. Keyvals should be an alternating sequence of keywords and values to log. `str` will be called on the values.
Using keyvals makes it easier to parse logs as data. Use a single :msg key with a string to replicate more traditional logging behavior.
debug
macro
(debug & keyvals)
error
macro
(error & keyvals)
info
macro
(info & keyvals)
trace
macro
(trace & keyvals)
warn
macro
(warn & keyvals)