type log_filter =
| LogFilter_by_label_whitelist of string list
| LogFilter_by_label_blacklist of string list
val pp_log_filter : Stdlib.Format.formatter -> log_filter -> unit
val logr : ('a, Stdlib.Format.formatter, unit) Stdlib.format -> 'a
val log :
label:string ->
?modul:string ->
?header_style:[< `Bold | `Italic | `Thin | `Underline ] option ->
?header_color:
[< `Black
| `Blue
| `Bright_black
| `Bright_blue
| `Bright_cyan
| `Bright_green
| `Bright_magenta
| `Bright_red
| `Bright_yellow
| `Cyan
| `Green
| `Magenta
| `Red
| `White
| `Yellow Magenta ] ->
('a, Stdlib.Format.formatter, unit, unit) Stdlib.format4 ->
'a
val verbose :
?modul:string ->
('a, Stdlib.Format.formatter, unit, unit) Stdlib.format4 ->
'a
val info :
?modul:string ->
('a, Stdlib.Format.formatter, unit, unit) Stdlib.format4 ->
'a
val warn :
?modul:string ->
('a, Stdlib.Format.formatter, unit, unit) Stdlib.format4 ->
'a
val debug :
?modul:string ->
('a, Stdlib.Format.formatter, unit, unit) Stdlib.format4 ->
'a
val error :
?modul:string ->
('a, Stdlib.Format.formatter, unit, unit) Stdlib.format4 ->
'a