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/"
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]
14build: [
15 ["dune" "build" "-p" name "-j" jobs]
16 ["dune" "runtest" "-p" name "examples"] {with-test}
17]
18
19description: """
20 Logging infrastructure inspired by the Python logging module.
21The aim of this module is to provide a quick and easy to use logging
22infrastructure.
23
24It has the following features :
25 * one line logger creation
26 * log messages printf style, or [string] or [string lazy_t]
27 * tree logging architecture for light configuration
28 * handlers associated to each logger will format and treat the message independantly.
29 * annotage log messages with tags
30"""
31url {
32 src: "https://github.com/sapristi/easy_logging/tarball/v0.4"
33 checksum: [
34 "md5=dea0798a0e16c4c3adcd66284c78f02e"
35 "sha512=cec0646fac2c3ef0bca8991053fb0f8867737b6809cb0b191fb806d69df50ddd42fac8dc3147fb5c7f070a8156188fd7f168699189c10a3cbd3d880f81da0fbf"
36 ]
37}