this repo has no description
1opam-version: "2.0" 2maintainer: "talex5@gmail.com" 3authors: "Thomas Leonard" 4homepage: "https://github.com/mirage/mirage-logs" 5bug-reports: "https://github.com/mirage/mirage-logs/issues" 6license: "ISC" 7dev-repo: "git+https://github.com/mirage/mirage-logs.git" 8build: [make "PREFIX=%{prefix}%"] 9install: [make "PREFIX=%{prefix}%" "install"] 10remove: ["ocamlfind" "remove" "mirage-logs"] 11depends: [ 12 "ocaml" {>= "4.01.0" & < "5.0"} 13 "logs" {>= "0.5.0"} 14 "ocamlfind" {build} 15 "ocamlbuild" {build} 16 "mirage-types" {< "3.0.0"} 17 "mirage-profile" 18 "lwt" 19] 20synopsis: 21 "A reporter for the Logs library that writes log messages to stderr, using a Mirage `CLOCK` to add timestamps." 22description: """ 23It 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. 24 25If tracing is enabled (via mirage-profile), it also writes each log message to the trace buffer.""" 26flags: light-uninstall 27url { 28 src: "https://github.com/mirage/mirage-logs/archive/v0.2.tar.gz" 29 checksum: [ 30 "sha256=38af4600e052dbd058bdd647c183c66724aa5c43b2c1475d387bb9fb594ef96d" 31 "md5=8a2d211deb69970b95b8890e68194357" 32 ] 33}