package asl

  1. Overview
  2. Docs
Bindings for the Apple System Log API

Install

Dune Dependency

Authors

Maintainers

Sources

asl-0.11.tbz
md5=db64cc814914023a107e0ed411437af5

Description

The Apple System Log allows applications to send log messages, which can be recorded, filtered and searched.

Published: 22 May 2017

README

Bindings to the Apple System Log

This library allows you to log via the Apple System Log from OCaml programs.

A simple example:

let ident = "my program" in
let facility = "Daemon" in
let client = Asl.Client.create ~ident ~facility ~opts:[ `Stderr ] () in
let message = Asl.Message.create ~sender:"example" () in
(* ... some time later ... *)
Asl.log ~client message `Notice "hello, world!";

Please read the API documentation.

For more context, please read the Apple System Log man pages.

Dependencies (5)

  1. jbuilder >= "1.0+beta9"
  2. ocamlfind build
  3. logs
  4. result
  5. ocaml

Dev Dependencies

None

Conflicts

None