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.0"} 13 "ppx_deriving"{>= "4.0" & < "5.0"} 14 "ppx_deriving_yojson" 15 "easy_logging" {= "0.4"} 16] 17build: [ 18 ["dune" "build" "-p" name "-j" jobs] 19 ["dune" "runtest" "-p" name "conf_loader/yojson"] {with-test} 20] 21 22description: """ 23 Provides deserialisation of logging configuration 24(loggers instantation and handlers parameters) from json, 25using ppx_deriving_yojson. 26 27------- 28 29 Logging infrastructure inspired by the Python logging module. 30The aim of this module is to provide a quick and easy to use logging 31infrastructure. 32 33It has the following features : 34 * one line logger creation 35 * log messages are either [string] or [string lazy_t] 36 * log level adaptable at runtime from anywhere in the program 37 * handlers associated to each logger will format and treat the message independantly. 38 * annotage log messages with tags 39""" 40url { 41 src: "https://github.com/sapristi/easy_logging/tarball/v0.4" 42 checksum: [ 43 "md5=dea0798a0e16c4c3adcd66284c78f02e" 44 "sha512=cec0646fac2c3ef0bca8991053fb0f8867737b6809cb0b191fb806d69df50ddd42fac8dc3147fb5c7f070a8156188fd7f168699189c10a3cbd3d880f81da0fbf" 45 ] 46}