this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Module to log messages. Aimed at being both powerful and easy to use" 4description: """\ 5Logging infrastructure inspired by the Python logging module. 6The aim of this module is to provide a quick and easy to use logging 7infrastructure. 8 9It has the following features : 10 * one line logger creation 11 * log messages printf style, or [string] or [string lazy_t] 12 * tree logging architecture for light configuration 13 * handlers associated to each logger will format, filter and treat the message independantly. 14 * use the infrastructure with your own handlers with the [MakeLogging] functor. 15 * use tags to add contextual information to log messages""" 16maintainer: "mathiasmillet@gmail.com" 17authors: "Mathias Millet" 18license: "MPL-2.0" 19homepage: "https://sapristi.github.io/easy_logging/" 20bug-reports: "https://github.com/sapristi/easy_logging/issues" 21depends: [ 22 "ocaml" {>= "4.07.0"} 23 "dune" {>= "1.8"} 24 "calendar" {>= "2.0"} 25] 26build: [ 27 ["dune" "build" "-p" name "-j" jobs] 28 ["dune" "runtest" "-p" name "-j" jobs "easy_logging"] {with-test} 29] 30dev-repo: "git+https://github.com/sapristi/easy_logging.git" 31url { 32 src: "https://github.com/sapristi/easy_logging/archive/v0.8.1.tar.gz" 33 checksum: [ 34 "md5=8d5dca598561d4922d20a00fade0a1da" 35 "sha512=f310cd2a9f3f64942baf32287267ddfe3212bcc5aa5a62c7b269809f586e2247d2d1adc4bd52cc3a9a7e6f769b9de090f8386a1bc764612ec91bf2a7d886ef0b" 36 ] 37}