Module type Logs_lwt.LOG
val msg : Logs.level -> 'a Logs_lwt.logSee Logs.msg.
val app : 'a Logs_lwt.logSee Logs.app.
val err : 'a Logs_lwt.logSee Logs.err.
val warn : 'a Logs_lwt.logSee Logs.warn.
val info : 'a Logs_lwt.logSee Logs.info.
val debug : 'a Logs_lwt.logSee Logs.debug.
val kmsg :
?over:(unit -> unit) ->
(unit -> 'b Lwt.t) ->
Logs.level ->
('a, 'b Lwt.t) Logs.msgf ->
'b Lwt.tSee Logs.kmsg.
Logging result value Errors
val on_error :
?level:Logs.level ->
?header:string ->
?tags:Logs.Tag.set ->
pp:(Stdlib.Format.formatter -> 'b -> unit) ->
use:('b -> 'a Lwt.t) ->
('a, 'b) Stdlib.result Lwt.t ->
'a Lwt.tSee Logs.on_error.
val on_error_msg :
?level:Logs.level ->
?header:string ->
?tags:Logs.Tag.set ->
use:(unit -> 'a Lwt.t) ->
('a, [ `Msg of string ]) Stdlib.result Lwt.t ->
'a Lwt.tSee Logs.on_error_msg.