module Log:sig..end
val set_debug : int -> unitSet debug level
val get_debug : unit -> intCurrent debug level
val debugf : int ->
('a, Format.formatter, unit, unit) Pervasives.format4 -> ('a -> unit) -> unitEmit a debug message at the given level. If the level is lower
than get_debug (), the message will indeed be emitted
val debug : int -> string -> unitSimpler version of Log.debug, without formatting
val set_debug_out : Format.formatter -> unitChange the output formatter.