Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 59582 invoked by uid 500); 25 Jul 2002 21:20:32 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 59570 invoked from network); 25 Jul 2002 21:20:31 -0000 Received: from venus.commerce.ubc.ca (137.82.154.16) by daedalus.apache.org with SMTP; 25 Jul 2002 21:20:31 -0000 Received: from garibaldi.commerce.ubc.ca (garibaldi.commerce.ubc.ca [137.82.66.80]) by venus.commerce.ubc.ca (8.9.3/8.9.3) with ESMTP id NAA26417 for ; Thu, 25 Jul 2002 13:14:42 -0700 Date: Thu, 25 Jul 2002 14:20:36 -0700 (PDT) From: Joshua Slive X-X-Sender: To: "users@httpd.apache.org" Subject: Re: "custom" in access log files In-Reply-To: <270228979.365292.4294748471@mailgate.gordmans.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Thu, 25 Jul 2002, Connie Jones wrote: > Would someone please tell me what "custom" means in access log files. A > couple of days ago this started appearing as an entry with no further > information and I can't find any definition of it anywhere. I would > appreciate any help. Thank you. It means you have a line like this in httpd.conf: CustomLog logs/access_log common but you don't have a corresponding LogFormat directive defining what "common" means. Therefore apache assumes that you would like the literal string "common" written to the log for every request. You probably want to add something like this to httpd.conf: LogFormat "%h %l %u %t \"%r\" %>s %b" common See: http://httpd.apache.org/docs-2.0/logs.html#common Joshua. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org