Module Core__.Syslog.Level

type t =
| EMERG

(** System is unusable *)

| ALERT

(** Action must be taken immediately *)

| CRIT

(** Critical condition *)

| ERR

(** Error conditions *)

| WARNING

(** Warning conditions *)

| NOTICE

(** Normal, but significant, condition *)

| INFO

(** Informational message *)

| DEBUG

(** Debug-level message *)

DEBUG < EMERG

include sig ... end
val compare : t ‑> t ‑> int
val all : t list
val t_of_sexp : Sexplib.Sexp.t ‑> t
val sexp_of_t : t ‑> Sexplib.Sexp.t
include Core__.Import.Stringable.S with type t := t
type t
val of_string : string ‑> t
val to_string : t ‑> string