Module Err.Level

A level for individual messages (by contrast to the current level of the log).

Seeing how a message of level Quiet would not make sense, this module distinguishes the two types.

Message of levels App are not supported by this library. Consider using Log if interested.

type t =
  1. | Error
  2. | Warning
  3. | Info
  4. | 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.