xenia 667bd757de | ||
---|---|---|
lib | ||
test | ||
.gitignore | ||
README.md | ||
dune-project | ||
package.nix | ||
xlog.opam |
README.md
xlog
logging library for cats written in ocaml
original code (most of the code here) from: https://git.lain.faith/iitalics/talircd, which is released under LGPL-2.0-or-later. all modifications to the code in this repo are released under the same license
usage
include (val Xlog.logs __FUNCTION__)
let () =
info (fun m -> m "meow meow meow")
module Submodule = struct
include (val Xlog.logs __FUNCTION__)
(* ... *)
end