Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 51311 invoked by uid 500); 5 Feb 2002 15:21:57 -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 51244 invoked by uid 500); 5 Feb 2002 15:21:57 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Date: 5 Feb 2002 15:21:56 -0000 Message-ID: <20020205152156.72160.qmail@icarus.apache.org> From: coar@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/modules/standard mod_alias.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N coar 02/02/05 07:21:56 Modified: src/modules/standard mod_alias.c Log: Demote the 'turned /foo into http://host/foo' message from WARNING to DEBUG; it's a supported operation, so no need to fill normal log files with noise. Setting LogLevel to Debug will show the activity, though. Revision Changes Path 1.48 +1 -1 apache-1.3/src/modules/standard/mod_alias.c Index: mod_alias.c =================================================================== RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_alias.c,v retrieving revision 1.47 retrieving revision 1.48 diff -u -u -r1.47 -r1.48 --- mod_alias.c 31 Jan 2002 20:29:41 -0000 1.47 +++ mod_alias.c 5 Feb 2002 15:21:55 -0000 1.48 @@ -397,7 +397,7 @@ char *orig_target = ret; ret = ap_construct_url(r->pool, ret, r); - ap_log_rerror(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, r, + ap_log_rerror(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, r, "incomplete redirection target of '%s' for " "URI '%s' modified to '%s'", orig_target, r->uri, ret);