Module Log_cli.Log_level

include module type of struct include Pplumbing_err.Err.Log_level end
type t = Pplumbing_err.Err.Log_level.t =
  1. | Quiet
  2. | App
  3. | Error
  4. | Warning
  5. | Info
  6. | Debug
val sexp_of_t : t -> Sexplib0.Sexp.t
val all : t list
val compare : t -> t -> int
val equal : t -> t -> bool
val to_string : t -> string

Return an uncapitalized string representing the variant constructor.

val of_logs_level : Logs.level option -> t
val to_logs_level : t -> Logs.level option