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"
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.6.0"}
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.6.1"
42 checksum: [
43 "md5=e4e71624902c7c06c75da8314287b0b7"
44 "sha512=415b5ef14d05173c28acbec467cf5a6906fce5dd244658fbee7673cc516d23c0aa069984330befe85270b708af070e40275eb1c2e78bdf8f717116454c237d0c"
45 ]
46}