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.2"}
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.2"
42 checksum: [
43 "md5=f037c384fcf01a05a17533f6a59d160e"
44 "sha512=fee38c650a6d1b3ac1cbddfcea2f9d80a86c490d7c46389776554088c31218d67ae583948c38854ec3ab9781b31e3d7de8354532518dd837627c0cb167b91337"
45 ]
46}