From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by sympa.inria.fr (Postfix) with ESMTPS id C6D357FD65 for ; Thu, 3 Dec 2015 20:41:55 +0100 (CET) IronPort-PHdr: 9a23:Hbjltxw+spv1LPDXCy+O+j09IxM/srCxBDY+r6Qd0O8XIJqq85mqBkHD//Il1AaPBtWFraocw8Pt8IneGkU4qa6bt34DdJEeHzQksu4x2zIaPcieFEfgJ+TrZSFpVO5LVVti4m3peRMNQJW2WVTerzWI4CIIHV2nbEwudrqzQtaapv/0/t7x0qWbWx9Piju5bOE6BzSNhiKViPMrh5B/IL060BrDrygAUe1XwWR1OQDbxE6ktY+YtaRu+CVIuv8n69UIEeCjJ/x5HvRkC2EBGGkw4IXPtALfBV+E734YF2EXiQZgAg7f7Ri8UI2n9mOws+tn0SaXOtazQb0qVDCK66ZwVASumCoBLyQ+8mzclop3lq0R6EakpgZ2zIPTe8SZOeRzeovZfMgGXixRU8BJTStDD4igKYwVALxSE/xfqtzRrl0PoB+JL52qFufugmtEj3n30Kl82fksFxPC3SQtBcgHrHXNsdizP6dEArP997XB0TiWN6Ae4jz68oWdN0l5+fw= Authentication-Results: mail2-smtp-roc.national.inria.fr; spf=None smtp.pra=daniel.buenzli@erratique.ch; spf=None smtp.mailfrom=daniel.buenzli@erratique.ch; spf=None smtp.helo=postmaster@smtp.webfaction.com Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=pra; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=mailfrom; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of postmaster@smtp.webfaction.com) identity=helo; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="postmaster@smtp.webfaction.com"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0CxAABsmmBWlUpWN0pehA2sfpFAgW4hgj2DMIIJEwEBAQEBAQEBEAEBAQEJCwkJHzCCLYIxVjUCJgJJFgEaiCcECbBvkHwBCgEBAR+BAZJHL4EVBZZhhS2JakmGbRCFTIoOg3IiAYJngV2GYQEBAQ X-IPAS-Result: A0CxAABsmmBWlUpWN0pehA2sfpFAgW4hgj2DMIIJEwEBAQEBAQEBEAEBAQEJCwkJHzCCLYIxVjUCJgJJFgEaiCcECbBvkHwBCgEBAR+BAZJHL4EVBZZhhS2JakmGbRCFTIoOg3IiAYJngV2GYQEBAQ X-IronPort-AV: E=Sophos;i="5.20,378,1444687200"; d="scan'208";a="190323868" Received: from mail6.webfaction.com (HELO smtp.webfaction.com) ([74.55.86.74]) by mail2-smtp-roc.national.inria.fr with ESMTP; 03 Dec 2015 20:41:55 +0100 Received: from [192.168.0.2] (cpc16-cmbg14-2-0-cust300.5-4.cable.virginm.net [86.6.157.45]) by smtp.webfaction.com (Postfix) with ESMTP id AEA0620A327B; Thu, 3 Dec 2015 19:41:51 +0000 (UTC) Date: Thu, 3 Dec 2015 19:41:47 +0000 From: =?utf-8?Q?Daniel_B=C3=BCnzli?= To: OCaml List , "=?utf-8?Q?mirageos-devel=40lists.xenproject.org?=" Cc: Jeremy Yallop , Drup Message-ID: <9FD64A9BC7C04CE0815129733504EE2E@erratique.ch> X-Mailer: sparrow 1.6.4 (build 1178) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: [Caml-list] [ANN] Logs 0.4.2 Hello, I'd like to announce the first release of Logs. Here's the blurb: Logs provides a logging infrastructure for OCaml. Logging is performed on sources whose reporting level can be set independently. Log message report is decoupled from logging and is handled by a reporter. A few optional log reporters are distributed with the base library and the API easily allows to implement your own. Logs depends only on the `result` compatibility package. The optional `Logs_stdo` reporter on standard outputs depends on Fmt. The optional `Logs_browser` reporter that reports to the web browser console depends on js_of_ocaml. The optional `Logs_cli` library that provides command line support for controlling Logs depends on `Cmdliner`. Logs and its reporters are distributed under the BSD3 license. Feedback on the API is welcome, it could still change a bit before stabilizing on a 1.0.0 release. Homepage: http://erratique.ch/software/logs API docs: http://erratique.ch/software/logs/doc The continuation based formatting trick used by Logs for minimizing non-logging overhead is based on Jeremy Yallop's findings; Gabriel Radanne helped to make further tests. Thanks to them and see [1] for the full discussion. Best, Daniel [1] https://github.com/mirage/ocaml-git/pull/130#issue-111278246