this repo has no description
1opam-version: "2.0" 2synopsis: "Module to easily log messages" 3 4maintainer: "mathiasmillet@gmail.com" 5authors: "Mathias Millet" 6license: "GPL-1.0-or-later" 7homepage: "https://sapristi.github.io/easy_logging/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.2" & < "5.0"} 14] 15build: [ 16 ["dune" "build" "-p" name "-j" jobs] 17 ["dune" "runtest" "-p" name] {with-test} 18] 19 20description: """ 21 Logging infrastructure inspired by the Python logging module. 22The aim of this module is to provide a quick and easy to use logging 23infrastructure. 24 25It has the following features : 26 * one line logger creation 27 * log messages are either [string] or [string lazy_t] 28 * log level adaptable at runtime from anywhere in the program 29 * handlers associated to each logger will format and treat the message independantly. 30""" 31url { 32 src: "https://github.com/sapristi/easy_logging/tarball/rc0.1.5" 33 checksum: [ 34 "md5=783d69ec2c9f0fe9a72f3edc8932bb26" 35 "sha512=3add23cd44387301f3514083fe7603f15b1530da11d86dc679ca7226b38417dc088d4cec6ea837b641f4af4cbadd3cc991bba68e5dd840d20be63d23eadad740" 36 ] 37}