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