Blammo has special handling for LogLevelOther "trace", specifically to support Amazonka, which uses that level as more verbose than debug. It's a relatively common convention.
It would be nice to also add,
logTrace :: (MonadLogger m, HasCallStack) => Message -> m ()
logTrace = logOther $ LogLevelOther "trace"
So that Blammo users could themselves log at a level more verbose than debug without having to duplicate the magic string "trace".
Blammo has special handling for
LogLevelOther "trace", specifically to support Amazonka, which uses that level as more verbose than debug. It's a relatively common convention.It would be nice to also add,
So that Blammo users could themselves log at a level more verbose than
debugwithout having to duplicate the magic string"trace".