logging library for cats written in ocaml
Go to file
xenia 667bd757de initial commit 2024-04-22 22:41:07 -04:00
lib initial commit 2024-04-22 22:41:07 -04:00
test initial commit 2024-04-22 22:41:07 -04:00
.gitignore initial commit 2024-04-22 22:41:07 -04:00
README.md initial commit 2024-04-22 22:41:07 -04:00
dune-project initial commit 2024-04-22 22:41:07 -04:00
package.nix initial commit 2024-04-22 22:41:07 -04:00
xlog.opam initial commit 2024-04-22 22:41:07 -04:00

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