module Log:sig..end
type t = <
|
active : |
|
f : |
Type for loggers.
type custom_log = {
|
timestamp : |
|
exec : |
val add_custom_log : string -> custom_log -> unitAdd a custom logging functions.
val rm_custom_log : string -> unitRemove a custom logging functions.
val make : Dtools.Conf.path -> tMake a logger labeled according to the given path.
val start : Dtools.Init.tAn atom that starts the logging.
val stop : Dtools.Init.tAn atom that stops the logging.
val conf : Dtools.Conf.ut
val conf_level : int Dtools.Conf.t
val conf_unix_timestamps : bool Dtools.Conf.t
val conf_stdout : bool Dtools.Conf.t
val conf_file : bool Dtools.Conf.t
val conf_file_path : string Dtools.Conf.t
val conf_file_append : bool Dtools.Conf.t
val conf_file_perms : int Dtools.Conf.t
val args : (string list * Stdlib.Arg.spec * string) listA set of command line options to be used with the Arg module.