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