Module type Logs.LOG

The type for source specific logging functions.

Log functions

val msg : level -> 'a log

See Logs.msg.

val app : 'a log

app is msg App.

val err : 'a log

err is msg Error.

val warn : 'a log

warn is msg Warning.

val info : 'a log

info is msg Info.

val debug : 'a log

debug is msg Debug.

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

See Logs.kmsg.

Logging result value Errors

val on_error : ?⁠level:level -> ?⁠header:string -> ?⁠tags:Tag.set -> pp:(Stdlib.Format.formatter -> 'b -> unit) -> use:('b -> 'a) -> ('a'b) Stdlib.result -> 'a

See Logs.on_error.

val on_error_msg : ?⁠level:level -> ?⁠header:string -> ?⁠tags:Tag.set -> use:(unit -> 'a) -> ('a[ `Msg of string ]) Stdlib.result -> 'a

See Logs.on_error_msg.