Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 97838 invoked by uid 500); 5 Feb 2002 11:35:59 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 97789 invoked by uid 500); 5 Feb 2002 11:35:59 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 5 Feb 2002 11:35:58 -0000 Message-ID: <20020205113558.22138.qmail@icarus.apache.org> From: coar@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/mappers mod_alias.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N coar 02/02/05 03:35:58 Modified: modules/mappers mod_alias.c Log: Change the 'we turned /foo into http://host/foo' log message to DEBUG; no reason to clutter people's log files with this when it's supported behaviour. Of course, they can find out about the performance impact by LogLeveling Debug. :-) Revision Changes Path 1.36 +1 -1 httpd-2.0/modules/mappers/mod_alias.c Index: mod_alias.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_alias.c,v retrieving revision 1.35 retrieving revision 1.36 diff -u -u -r1.35 -r1.36 --- mod_alias.c 31 Jan 2002 20:38:08 -0000 1.35 +++ mod_alias.c 5 Feb 2002 11:35:57 -0000 1.36 @@ -440,7 +440,7 @@ char *orig_target = ret; ret = ap_construct_url(r->pool, ret, r); - ap_log_rerror(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, 0, r, + ap_log_rerror(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r, "incomplete redirection target of '%s' for " "URI '%s' modified to '%s'", orig_target, r->uri, ret);