-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy_logging.opam
32 lines (30 loc) · 1.16 KB
/
easy_logging.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
opam-version: "2.0"
name: "easy_logging"
version: "0.8.2"
synopsis: "Module to log messages. Aimed at being both powerful and easy to use"
maintainer: "[email protected]"
authors: "Mathias Millet"
license: "MPL-2.0"
homepage: "https://sapristi.github.io/easy_logging/"
bug-reports: "https://github.com/sapristi/easy_logging/issues"
dev-repo: "git+https://github.com/sapristi/easy_logging.git"
depends: [
"ocaml" {>= "4.07.0"}
"dune" {>= "1.8"}
"calendar" {>= "2.0"}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs "easy_logging"] {with-test}
]
description: """Logging infrastructure inspired by the Python logging module.
The aim of this module is to provide a quick and easy to use logging
infrastructure.
It has the following features :
* one line logger creation
* log messages printf style, or [string] or [string lazy_t]
* tree logging architecture for light configuration
* handlers associated to each logger will format, filter and treat the message independantly.
* use the infrastructure with your own handlers with the [MakeLogging] functor.
* use tags to add contextual information to log messages
"""