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