tori-rs/ocaml/lib/utilities/log.ml
2025-04-21 20:10:59 -03:00

4 lines
173 B
OCaml

let elog (message : string) : unit =
let debug_flag = try Unix.getenv "DEBUG" with Not_found -> "" in
if debug_flag <> "" then prerr_endline @@ " [log] " ^ message