You can search for identifiers within the package.
in-package search v0.2.0
nloge
Nloge.Level
type t = [
| `Emergency
| `Alert
| `Critical
| `Error
| `Warning
| `Notice
| `Info
| `Debug
]
syslog level
val equal : t -> t -> Ppx_deriving_runtime.bool
val compare : t -> t -> Ppx_deriving_runtime.int
type Effect.t +=
| Get : t Effect.t
Get refers current logging level.
Get
val get_level : unit -> t
val parse : string -> [> `Alert | `Critical | `Debug | `Emergency | `Error | `Info | `Notice | `Warning ] option
val pp : Format.formatter -> t -> unit
val show : t -> string