From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS6939 64.71.128.0/18 X-Spam-Status: No, score=-1.9 required=3.0 tests=AWL,BAYES_00, MSGID_FROM_MTA_HEADER shortcircuit=no autolearn=unavailable version=3.3.2 Path: news.gmane.org!not-for-mail From: Eric Wong Newsgroups: gmane.comp.lang.ruby.clogger.general Subject: 1.0.0 release imminent Date: Mon, 18 Apr 2011 17:48:32 -0700 Message-ID: <20110419004832.GA11314@dcvr.yhbt.net> References: <20110419004832.GA11314@dcvr.yhbt.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1303174138 31338 80.91.229.12 (19 Apr 2011 00:48:58 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 19 Apr 2011 00:48:58 +0000 (UTC) To: clogger@librelist.org Original-X-From: clogger@librelist.org Tue Apr 19 02:48:53 2011 Return-path: Envelope-to: gcrcg-clogger@m.gmane.org In-Reply-To: <20110419004832.GA11314@dcvr.yhbt.net> List-Archive: List-Help: List-Id: List-Post: List-Subscribe: List-Unsubscribe: Precedence: list Original-Sender: clogger@librelist.org Xref: news.gmane.org gmane.comp.lang.ruby.clogger.general:48 Archived-At: Received: from zedshaw.xen.prgmr.com ([64.71.167.205]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QBz7c-0004Dr-9y for gcrcg-clogger@m.gmane.org; Tue, 19 Apr 2011 02:48:52 +0200 Received: from zedshaw.xen.prgmr.com (localhost [IPv6:::1]) by zedshaw.xen.prgmr.com (Postfix) with ESMTP id C05A421C7B7 for ; Tue, 19 Apr 2011 00:49:30 +0000 (UTC) Anything obviously missing (or broken)? I'm mainly looking for things nginx supports that clogger is missing. Of course stuff like $upstream_* variables in nginx that requires intimate knowledge of the underlying Rack application so are thus impossible to mimic. I haven't heard of anything being broken in a while, so I'll assume it's all good. There are no new system-call dependencies in clogger.git, either, so it's unlikely I broke some things for systems I don't have access to (everything non-GNU/Linux). Some things going on in clogger.git: I just added $time_iso8601 to clogger.git (added to nginx 0.9.6) and made $time_local local-independent. $time_local{FORMAT} is still supported, but FORMAT still uses strftime(3) internally which means it's locale-aware and unsuitable for consistent logs (nginx doesn't use strftime(), either). There's also a minor usability tweak that allows Symbols to be specified as the :format argument, so config.ru can be shortened: before: use Clogger, :format => Clogger::Format::Rack_1_0 after: use Clogger, :format => :Rack_1_0 Thanks for reading! -- Eric Wong