a9c827dacf77b387f0c481ba52d46d56d5e0607c
[SXSI/xpathcomp.git] / src / logger.mli
1 type t = string
2 type level = int
3 val is_logger : t -> bool
4 val is_active : t -> bool
5 val level : t -> level
6 val activate : t -> level -> unit
7 val deactivate : t -> unit
8 val set_output : Format.formatter -> unit
9 val log : t -> level -> string -> unit
10
11 val available : unit -> string list