Module Easy_logging_yojson_aux.Logging_types

include E.Logging_internals.Logging_types
type level =
| Debug
| Trace
| Info
| Warning
| Error
| Flash
| NoLevel

Possible level of a log item.

val level_of_string : string -> (level, string) Stdlib.result
val show_level : level -> string
val pp_level : Stdlib.Format.formatter -> level -> unit
type log_item = {
level : level;
logger_name : string;
msg : string;
tags : string list;
timestamp : float;
}
module type HandlersT = sig ... end
val level_to_yojson : level -> Yojson.Safe.t
val level_of_yojson : Yojson.Safe.t -> (level, string) Stdlib.result