Context : Type A structured context: a list of named fields.
Totality: total
Visibility: public exportemptyContext : Context The empty context.
Totality: total
Visibility: public exportaddField : String -> LogParamValue -> Context -> Context Add a primitive field to a context.
Totality: total
Visibility: public exportaddStr : String -> String -> Context -> Context Add a string field to a context.
Totality: total
Visibility: public exportaddInt : String -> Integer -> Context -> Context Add an integer field to a context.
Totality: total
Visibility: public exportaddBool : String -> Bool -> Context -> Context Add a boolean field to a context.
Totality: total
Visibility: public exportaddNamespace : String -> Context -> Context Add a namespace segment to a context.
Namespaces are stored as string fields with the key "namespace".
Totality: total
Visibility: public exportwithContext : Context -> LogAction m Msg -> LogAction m Msg Enrich a Msg log action by prepending context fields to every message.
Totality: total
Visibility: public export