Up
Module
Level
Signature
type
t =
| EMERG
(*
System is unusable
*)
| ALERT
(*
Action must be taken immediately
*)
| CRIT
(*
Critical condition
*)
| ERR
(*
Error conditions
*)
| WARNING
(*
Warning conditions
*)
| NOTICE
(*
Normal, but significant, condition
*)
| INFO
(*
Informational message
*)
| DEBUG
(*
Debug-level message
*)
DEBUG
<
EMERG
val
t_of_sexp :
Sexplib.Sexp.t
->
t
val
sexp_of_t :
t
->
Sexplib.Sexp.t
val
all :
t
list
val
compare :
t
->
t
-> int
include
Core_kernel.Std.Stringable.S
with
type
t
:=
t
type
t
val
of_string : string ->
t
val
to_string :
t
-> string