this repo has no description
1opam-version: "2.0"
2synopsis: "Module to log messages. Aimed at being both powerful and easy to use"
3maintainer: "mathiasmillet@gmail.com"
4authors: "Mathias Millet"
5license: "GPL-1.0-or-later"
6homepage: "https://sapristi.github.io/easy_logging/"
7bug-reports: "https://github.com/sapristi/easy_logging/issues"
8dev-repo: "git+https://github.com/sapristi/easy_logging.git"
9depends: [
10 "ocaml" {>= "4.04.0"}
11 "dune" {>= "1.8"}
12]
13build: [
14 ["dune" "build" "-p" name "-j" jobs]
15 ["dune" "runtest" "-p" name "src/examples"] {with-test}
16]
17
18description: """Logging infrastructure inspired by the Python logging module.
19The aim of this module is to provide a quick and easy to use logging
20infrastructure.
21
22It has the following features :
23 * one line logger creation
24 * log messages printf style, or [string] or [string lazy_t]
25 * tree logging architecture for light configuration
26 * handlers associated to each logger will format, filter and treat the message independantly.
27 * use the infrastructure with your own handlers with the [MakeLogging] functor.
28 * use tags to add contextual information to log messages
29"""
30url {
31 src: "https://github.com/sapristi/easy_logging/tarball/v0.5.2"
32 checksum: [
33 "md5=f037c384fcf01a05a17533f6a59d160e"
34 "sha512=fee38c650a6d1b3ac1cbddfcea2f9d80a86c490d7c46389776554088c31218d67ae583948c38854ec3ab9781b31e3d7de8354532518dd837627c0cb167b91337"
35 ]
36}