Owl_logLog module provides logging functionality.
val set_level : level -> unitThis function sets the global logging level. Low level logging will be omitted.
val set_output : out_channel -> unitThis function sets the channel for the logging output. The default one is the standard output.
``set_color true`` turns on the colour; ``set_color false`` turns it off.
val debug : ('a, out_channel, unit) format -> 'aThis function outputs log at ``DEBUG`` level.
val info : ('a, out_channel, unit) format -> 'aThis function outputs log at ``INFO`` level.
val warn : ('a, out_channel, unit) format -> 'aThis function outputs log at ``WARN`` level.
val error : ('a, out_channel, unit) format -> 'aThis function outputs log at ``ERROR`` level.
val fatal : ('a, out_channel, unit) format -> 'aThis function outputs log at ``FATAL`` level.