sig
  type t =
      < active : int -> bool;
        f : 'a. int -> ('a, unit, string, unit) Stdlib.format4 -> 'a >
  type custom_log = { timestamp : bool; exec : string -> unit; }
  val add_custom_log : string -> Dtools.Log.custom_log -> unit
  val rm_custom_log : string -> unit
  val make : Dtools.Conf.path -> Dtools.Log.t
  val start : Dtools.Init.t
  val stop : Dtools.Init.t
  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) list
end