Module Easy_logging__.Logging_types
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