package nloge

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = [
  1. | `Emergency
  2. | `Alert
  3. | `Critical
  4. | `Error
  5. | `Warning
  6. | `Notice
  7. | `Info
  8. | `Debug
]

syslog level

val equal : t -> t -> Ppx_deriving_runtime.bool
val compare : t -> t -> Ppx_deriving_runtime.int
type Stdlib.Effect.t +=
  1. | Get : t Stdlib.Effect.t
    (*

    Get refers current logging level.

    *)
val get_level : unit -> t
val parse : string -> [> `Alert | `Critical | `Debug | `Emergency | `Error | `Info | `Notice | `Warning ] option
val pp : Stdlib.Format.formatter -> t -> unit
val show : t -> string