Module Error


module Error: sig  end
Module for printing errors


Module for printing errors

val internal_print : string -> ('a, unit, unit) format -> 'a
prints on the standard output the concatenation of the given string and of the given formatted message.

The formatted messages format arg1 ... argn has the same form than for printf.
See also the Ocaml module Printf

val internal_fprint : Pervasives.out_channel -> string -> ('a, unit, unit) format -> 'a
prints on the given output channel the concatenation of the given string and of the given formatted message.
val ignore : ('a, unit, unit) format -> 'a
Do nothing.
val error : ('a, unit, unit) format -> 'a
report the given formatted error message on error output.
val warning : ('a, unit, unit) format -> 'a
report the given formatted warning message on error output.