this repo has no description
1opam-version: "2.0"
2synopsis: "Configuration loader for easy_logging with yojson backend"
3description: """\
4Provides deserialisation of logging configuration
5(loggers instantation and handlers parameters) from json,
6using ppx_deriving_yojson.
7
8-------
9
10 Logging infrastructure inspired by the Python logging module.
11The aim of this module is to provide a quick and easy to use logging
12infrastructure.
13
14It has the following features :
15 * one line logger creation
16 * log messages printf style, or [string] or [string lazy_t]
17 * tree logging architecture for light configuration
18 * handlers associated to each logger will format, filter and treat the message independantly.
19 * use the infrastructure with your own handlers with the [MakeLogging] functor.
20 * use tags to add contextual information to log messages"""
21maintainer: "mathiasmillet@gmail.com"
22authors: "Mathias Millet"
23license: "MPL-2.0"
24homepage: "https://sapristi.github.io/easy_logging/"
25bug-reports: "https://github.com/sapristi/easy_logging/issues"
26depends: [
27 "ocaml" {>= "4.07.0"}
28 "dune" {>= "1.8"}
29 "ppx_deriving" {>= "4.0"}
30 "ppx_deriving_yojson"
31 "easy_logging" {= version}
32]
33build: [
34 ["dune" "build" "-p" name "-j" jobs]
35 ["dune" "runtest" "-p" name "-j" jobs "conf_loader_modules/yojson"]
36 {with-test}
37]
38dev-repo: "git+https://github.com/sapristi/easy_logging.git"
39url {
40 src: "https://github.com/sapristi/easy_logging/archive/v0.8.1.tar.gz"
41 checksum: [
42 "md5=8d5dca598561d4922d20a00fade0a1da"
43 "sha512=f310cd2a9f3f64942baf32287267ddfe3212bcc5aa5a62c7b269809f586e2247d2d1adc4bd52cc3a9a7e6f769b9de090f8386a1bc764612ec91bf2a7d886ef0b"
44 ]
45}