Logging.Mode
Types and functions for controlling log levels
type level =
| Normal
Normal output
| Verbose
Verbose output
| TMI
Too much information
Logging levels
type t =
| Disabled
| Enabled of level
Type specifying the logging mode
val enabled : unit -> bool
Returns whether logging is enabled or not
val set_mode : t -> unit
Sets the logging mode
val pp : Stdlib.Format.formatter -> t -> unit
Pretty print function for logging mode type