this repo has no description
1opam-version: "2.0"
2maintainer: "talex5@gmail.com"
3authors: [ "Thomas Leonard" ]
4license: "ISC"
5homepage: "https://github.com/mirage/mirage-logs"
6dev-repo: "git+https://github.com/mirage/mirage-logs.git"
7bug-reports: "https://github.com/mirage/mirage-logs/issues"
8doc: "https://mirage.github.io/mirage-logs/"
9tags: ["org:mirage"]
10depends: [
11 "ocaml" {>= "4.01.0"}
12 "dune" {>= "1.0"}
13 "logs" {>= "0.5.0"}
14 "ptime" {>= "0.8.1"}
15 "mirage-clock" {>= "1.2.0" & < "3.0.0"}
16 "mirage-profile"
17 "lwt"
18 "alcotest" {with-test}
19]
20build: [
21 ["dune" "subst"] {dev}
22 ["dune" "build" "-p" name "-j" jobs]
23 ["dune" "runtest" "-p" name] {with-test}
24]
25synopsis: "A reporter for the Logs library that writes log messages to stderr, using a Mirage `CLOCK` to add timestamps"
26description: """
27It can also log only important messages to the console, while writing all received messages to a ring buffer which is displayed if an exception occurs.
28
29If tracing is enabled (via mirage-profile), it also writes each log message to the trace buffer.
30"""
31url {
32 src:
33 "https://github.com/mirage/mirage-logs/releases/download/v1.0.0/mirage-logs-v1.0.0.tbz"
34 checksum: [
35 "sha256=b3c52e71336c2756df1145e5466bbd9ccc95bad28207998f9b70949a9fc050ee"
36 "sha512=f5e4f71448478f6d49a63bf4f490d40ce6b45727acd4bdf0822ba48478ca65d65d8fbe55436eec904a7fcb01529f08d6d721fab10e9b9d1106b65080ee848031"
37 ]
38}