From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13430 invoked by alias); 7 Dec 2007 16:37:41 -0000 Received: (qmail 13420 invoked by uid 22791); 7 Dec 2007 16:37:41 -0000 X-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_20,DK_POLICY_SIGNSOME,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 07 Dec 2007 16:37:37 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.1) with ESMTP id lB7GbZ2l015736 for ; Fri, 7 Dec 2007 11:37:35 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id lB7GbYjP026232 for ; Fri, 7 Dec 2007 11:37:34 -0500 Received: from [127.0.0.1] (sebastian-int.corp.redhat.com [172.16.52.221]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id lB7GbY5T006064 for ; Fri, 7 Dec 2007 11:37:34 -0500 Message-ID: <475976DF.6070302@redhat.com> Date: Fri, 07 Dec 2007 16:37:00 -0000 From: Andrew Cagney User-Agent: Thunderbird 1.5.0.12 (X11/20070530) MIME-Version: 1.0 To: frysk Subject: a simpler logger [?] Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2007-q4/txt/msg00211.txt.bz2 Hi, I've just added a frysk.rsl (really simple logger?) package as a possible alternative to the java logging framework we're currently using. The "advantages" as I'll spin them are: -> the logging call is unlocked (at least in the logger level) so the ongoing saga of older log implementations deadlocking is avoided -> nested logging works -> it supports a completer interface so that << (fhpd) frysk log frysk.proc. >> can give a known list of loggers -> [I think] the call interface is simpler and lighter for instance << log.fine(this, "adding foo") >> or << log.fine(this, "adding foo=", foo); >> (we can add more methods as we need them :-) thoughts? Andrew