(************************************************************************) (* * The Coq Proof Assistant / The Coq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* 'a -> unit) -> Format.formatter -> 'a list -> unit type level = [ | `DEBUG | `INFO | `NOTICE | `WARNING | `ERROR | `FATAL ] (** debug printing *) val debug : bool ref val log_pp : ?level:level -> Pp.t -> unit val log : ?level:level -> string -> unit (* The directory where user config files are conventionally *) (* installed on the current platform (as given by Glib) *) val coqide_config_home : unit -> string (* The directories where system-wide config files are conventionally *) (* installed on the current platform (as given by Glib) *) val coqide_system_config_dirs : unit -> string list (* The directory where default config files are installed at installation time *) val coqide_default_config_dir : unit -> string (* The ordered list of directories where a config file is searched by default *) val coqide_config_dirs : unit -> string list (* The ordered list of directories where a data file is searched by default *) val coqide_data_dirs : unit -> string list