mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-06 19:25:32 -05:00
12 lines
493 B
OCaml
12 lines
493 B
OCaml
(** Logging for tiny_httpd *)
|
|
|
|
val info : ((('a, Format.formatter, unit, unit) format4 -> 'a) -> unit) -> unit
|
|
val debug : ((('a, Format.formatter, unit, unit) format4 -> 'a) -> unit) -> unit
|
|
val error : ((('a, Format.formatter, unit, unit) format4 -> 'a) -> unit) -> unit
|
|
|
|
val setup : debug:bool -> unit -> unit
|
|
(** Setup and enable logging. This should only ever be used in executables,
|
|
not libraries.
|
|
@param debug if true, set logging to debug (otherwise info) *)
|
|
|
|
val dummy : bool
|