WIP
A logging library for OCaml.
Clone this repository, then execute opam pin.
opam pin add loga . --strict(TODO: Register to opam...)
Add a loga and loga.ppx to your dune file.
Example:
(libraries loga)
(preprocess (pps loga.ppx)Then you can use logger like below!
let () =
[%loga.info "Hello %s %d" "world" 42];dune runtest