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 * annotage log messages with tags
31"""
32url {
33 src: "https://github.com/sapristi/easy_logging/tarball/v0.3"
34 checksum: [
35 "md5=f2c40e821571792fc46dce2e97b2154b"
36 "sha512=15bbf841d4a7c5ff7c7d0af60176e6479a2ea1bf97e882d1c5bcf0adc7ccf990d947999705e63717353a86c8e87aa473e830629631b75501894389ca99b9f273"
37 ]
38}