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.2"
34 checksum: [
35 "md5=16727b9601e8026716e3831b974fd5e0"
36 "sha512=ca6f6709624a0f96db4c1c99071d6758078c966b30f8952f41057c9dbce812bdbd4133ccf4ba579c98717d8353d1ce51bb6c84aee0980bd6455681415e9d62a3"
37 ]
38}