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: "GPL" 24homepage: "https://sapristi.github.io/easy_logging/" 25bug-reports: "https://github.com/sapristi/easy_logging/issues" 26depends: [ 27 "ocaml" {>= "4.04.0"} 28 "dune" {>= "1.8"} 29 "ppx_deriving" {>= "4.0" & < "5.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.7.1.tar.gz" 41 checksum: [ 42 "md5=ff59e729374d66cc927de16bd7b82dea" 43 "sha512=ca31fd39edab9a9592e9d5b2646dccc750037f823c4195de4b5ce4760e9463df1576806f850911ef96b359a45c35cc25f160860aa87b5519cf8b8feca8a68deb" 44 ] 45}