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" 8tags: ["org:mirage"] 9depends: [ 10 "ocaml" {>= "4.01.0"} 11 "ocamlfind" {build} 12 "ocamlbuild" {build} 13 "topkg" {build} 14 "logs" {>= "0.5.0"} 15 "ptime" {>= "0.8.1"} 16 "mirage-clock" {>= "1.2.0" & < "3.0.0"} 17 "mirage-profile" 18 "lwt" 19 "lwt" {with-test & < "5.0.0"} 20 "alcotest" {with-test} 21] 22conflicts: [ 23 "mirage-types" { < "3.0.0" } 24] 25build: [ 26 ["ocaml" "pkg/pkg.ml" "build" "--tests" "false" "--pinned" "%{pinned}%"] 27 ["ocaml" "pkg/pkg.ml" "build" "--tests" "true" "--pinned" "%{pinned}%"] 28 {with-test} 29 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 30] 31synopsis: 32 "A reporter for the Logs library that writes log messages to stderr, using a Mirage `CLOCK` to add timestamps." 33description: """ 34It 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. 35 36If tracing is enabled (via mirage-profile), it also writes each log message to the trace buffer.""" 37url { 38 src: 39 "https://github.com/mirage/mirage-logs/releases/download/0.3.0/mirage-logs-0.3.0.tbz" 40 checksum: [ 41 "sha256=fd3ed7499d6c5d1fbb21a05fb1aa95a7909d9088eff555eb3812dd886b24af10" 42 "md5=7c3dda47d2c5cc2321b3369d66938017" 43 ] 44}