package odig

  1. Overview
  2. Docs

Odig log.

Log

val src : Logs.src

src is Odig's logging source.

include Logs.LOG

Log functions

val msg : Logs.level -> 'a Logs.log
val app : 'a Logs.log

app is msg App.

val err : 'a Logs.log

err is msg Error.

val warn : 'a Logs.log

warn is msg Warning.

val info : 'a Logs.log

info is msg Info.

val debug : 'a Logs.log

debug is msg Debug.

val kmsg : (unit -> 'b) -> Logs.level -> ('a, 'b) Logs.msgf -> 'b

Logging result value Errors

val on_error : ?level:Logs.level -> ?header:string -> ?tags:Logs.Tag.set -> pp:(Format.formatter -> 'b -> unit) -> use:('b -> 'a) -> ('a, 'b) Pervasives.result -> 'a
val on_error_msg : ?level:Logs.level -> ?header:string -> ?tags:Logs.Tag.set -> use:(unit -> 'a) -> ('a, [ `Msg of string ]) Pervasives.result -> 'a
val on_iter_error_msg : ?level:Logs.level -> ?header:string -> ?tags:Logs.Tag.set -> (('a -> unit) -> 'b -> 'c) -> ('a -> (unit, [ `Msg of string ]) Pervasives.result) -> 'b -> 'c
val time : ?level:Logs.level -> ('a -> (?tags:Logs.Tag.set -> ('b, Format.formatter, unit, 'a) Pervasives.format4 -> 'b) -> 'a) -> ('c -> 'a) -> 'c -> 'a