this repo has no description
1opam-version: "2.0"
2synopsis: "Module to log messages. Aimed at being both powerful and easy to use"
3maintainer: "mathiasmillet@gmail.com"
4authors: "Mathias Millet"
5license: "GPL"
6homepage: "https://sapristi.github.io/easy_logging/"
7bug-reports: "https://github.com/sapristi/easy_logging/issues"
8dev-repo: "git+https://github.com/sapristi/easy_logging.git"
9depends: [
10 "ocaml" {>= "4.04.0"}
11 "dune" {>= "1.8"}
12 "calendar" {>= "2.0"}
13]
14build: [
15 ["dune" "build" "-p" name "-j" jobs]
16 ["dune" "runtest" "-p" name "easy_logging/examples"] {with-test}
17]
18
19description: """Logging infrastructure inspired by the Python logging module.
20The aim of this module is to provide a quick and easy to use logging
21infrastructure.
22
23It has the following features :
24 * one line logger creation
25 * log messages printf style, or [string] or [string lazy_t]
26 * tree logging architecture for light configuration
27 * handlers associated to each logger will format, filter and treat the message independantly.
28 * use the infrastructure with your own handlers with the [MakeLogging] functor.
29 * use tags to add contextual information to log messages
30"""
31url {
32 src: "https://github.com/sapristi/easy_logging/archive/v0.6.2.tar.gz"
33 checksum: [
34 "md5=2c805f25050b6917a4c99edbd3bb73fb"
35 "sha512=a20aa4cbcbfa4b8241daf4775f86e91ed3b91dcec51ad628edff5d6857354e63d93c312c023a5c0e59f2924f051d618636701563933e89762af63679f981f18b"
36 ]
37}