Module type Logs.LOG
The type for source specific logging functions.
Log functions
- val app : 'a log
- appis- msg App.
- val err : 'a log
- erris- msg Error.
- val warn : 'a log
- warnis- msg Warning.
- val info : 'a log
- infois- msg Info.
- val debug : 'a log
- debugis- msg Debug.
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.