Module Kxclib.Log0

type log_filter =
  1. | LogFilter_by_label_whitelist of string list
  2. | LogFilter_by_label_blacklist of string list
val pp_log_filter : Stdlib.Format.formatter -> log_filter -> unit
val string_of_log_filter : log_filter -> string
module Internals : sig ... end
module LoggingConfig : sig ... end
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
module Pervasives : sig ... end