Return-Path: X-Original-To: apmail-httpd-modules-dev-archive@minotaur.apache.org Delivered-To: apmail-httpd-modules-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B2977BB91 for ; Mon, 16 Jan 2012 21:41:37 +0000 (UTC) Received: (qmail 16329 invoked by uid 500); 16 Jan 2012 21:41:37 -0000 Delivered-To: apmail-httpd-modules-dev-archive@httpd.apache.org Received: (qmail 16275 invoked by uid 500); 16 Jan 2012 21:41:36 -0000 Mailing-List: contact modules-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: modules-dev@httpd.apache.org Delivered-To: mailing list modules-dev@httpd.apache.org Received: (qmail 16267 invoked by uid 99); 16 Jan 2012 21:41:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jan 2012 21:41:36 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of jlewis@silverhawk.net designates 209.85.210.173 as permitted sender) Received: from [209.85.210.173] (HELO mail-iy0-f173.google.com) (209.85.210.173) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jan 2012 21:41:27 +0000 Received: by iaeo4 with SMTP id o4so9551326iae.18 for ; Mon, 16 Jan 2012 13:41:06 -0800 (PST) Received: by 10.50.189.137 with SMTP id gi9mr14796896igc.1.1326750066461; Mon, 16 Jan 2012 13:41:06 -0800 (PST) Received: from cyanide.overstock.com ([65.116.116.6]) by mx.google.com with ESMTPS id x18sm69658779ibi.2.2012.01.16.13.41.05 (version=SSLv3 cipher=OTHER); Mon, 16 Jan 2012 13:41:06 -0800 (PST) Sender: Joe Lewis Message-ID: <4F149965.2060206@joe-lewis.com> Date: Mon, 16 Jan 2012 14:40:53 -0700 From: Joe Lewis User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111222 Thunderbird/9.0 MIME-Version: 1.0 To: modules-dev@httpd.apache.org Subject: Re: Input Filters -- not seeing anything References: <01cb01ccd227$12a65570$37f30050$@com> <006201ccd469$995d87c0$cc189740$@com> <00ba01ccd46d$15c77a20$41566e60$@com> <4F14526B.7030709@joe-lewis.com> <00cf01ccd46d$a0984800$e1c8d800$@com> <00e401ccd476$98b4d8c0$ca1e8a40$@com> <4F1462A6.4060803@joe-lewis.com> <012401ccd494$c6c29130$5447b390$@com> In-Reply-To: <012401ccd494$c6c29130$5447b390$@com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On 01/16/2012 02:21 PM, Pranesh Vadhirajan wrote: > Thanks for the response, Joe. Are the ap_*log lines to be used in lieu of > the fprintfs that I have? Or do those actually display errors during > compilation of my code through apxs? > > Thanks, > Pranesh You would be simply logging a message through apache's defaults. I usually suggest this kind of "logging" vs. fprintf's, since fprintf's might not go where you expect. Joe