UtilsLib.XlogA Logs.LOG module that includes its source
module type MyLOG = sig ... endval setup_log :
app:string ->
render_mark:(Style.style_tag list -> string) ->
?colored:bool ->
Logs.level ->
Stdlib.Format.formatter ->
unitsetup_log ~app f l sets the log level to l and provides the name app to the default application log, for the formatter f.
val setup_log_std :
app:string ->
render_mark:(Style.style_tag list -> string) ->
?colored:bool ->
Logs.level ->
unitsetup_log ~app f l sets the log level to l and provides the name app to the default application log, for the formatter Format.std_formatter.