package async_log

  1. Overview
  2. Docs
type t = [
  1. | `Debug
  2. | `Info
    (*

    default level

    *)
  3. | `Error
]

Describes both the level of a log and the level of a message sent to a log. There is an ordering to levels (`Debug < `Info < `Error), and a log set to a level will never display messages at a lower log level.

Messages without a level are treated as `Info.

include Core.Bin_prot.Binable.S with type t := t
val bin_size_t : t Bin_prot__.Size.sizer
val bin_write_t : t Bin_prot__.Write.writer
val bin_read_t : t Bin_prot__.Read.reader
val __bin_read_t__ : (int -> t) Bin_prot__.Read.reader
val bin_shape_t : Bin_prot__.Shape.t
val bin_writer_t : t Bin_prot__.Type_class.writer
val bin_reader_t : t Bin_prot__.Type_class.reader
val bin_t : t Bin_prot__.Type_class.t
val compare : t -> t -> int
include Ppx_enumerate_lib.Enumerable.S with type t := t
val all : t list
val sexp_of_t : t -> Sexplib0.Sexp.t
val t_of_sexp : Sexplib0.Sexp.t -> t
val __t_of_sexp__ : Sexplib0.Sexp.t -> t
val t_sexp_grammar : t Sexplib0.Sexp_grammar.t
include Core.Stringable with type t := t
val of_string : string -> t
val to_string : t -> string
val as_or_more_verbose_than : log_level:t -> msg_level:t option -> bool
module Stable : sig ... end
OCaml

Innovation. Community. Security.