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: "GPL" 19homepage: "https://sapristi.github.io/easy_logging/" 20bug-reports: "https://github.com/sapristi/easy_logging/issues" 21depends: [ 22 "ocaml" {>= "4.04.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/examples"] {with-test} 29] 30dev-repo: "git+https://github.com/sapristi/easy_logging.git" 31url { 32 src: "https://github.com/sapristi/easy_logging/archive/v0.7.1.tar.gz" 33 checksum: [ 34 "md5=ff59e729374d66cc927de16bd7b82dea" 35 "sha512=ca31fd39edab9a9592e9d5b2646dccc750037f823c4195de4b5ce4760e9463df1576806f850911ef96b359a45c35cc25f160860aa87b5519cf8b8feca8a68deb" 36 ] 37}