Owl_log
Log module provides logging functionality.
val set_level : level -> unit
This function sets the global logging level. Low level logging will be omitted.
val set_output : out_channel -> unit
This function sets the channel for the logging output. The default one is the standard output.
val debug : ('a, out_channel, unit) format -> 'a
This function outputs log at DEBUG
level.
val info : ('a, out_channel, unit) format -> 'a
This function outputs log at INFO
level.
val warn : ('a, out_channel, unit) format -> 'a
This function outputs log at WARN
level.
val error : ('a, out_channel, unit) format -> 'a
This function outputs log at ERROR
level.
val fatal : ('a, out_channel, unit) format -> 'a
This function outputs log at FATAL
level.