]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
PR 44020
authorJim Jagielski <jim@apache.org>
Sun, 4 Sep 2011 19:37:31 +0000 (19:37 +0000)
committerJim Jagielski <jim@apache.org>
Sun, 4 Sep 2011 19:37:31 +0000 (19:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1165101 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/mappers/mod_alias.c

diff --git a/CHANGES b/CHANGES
index 31ec1293c42061c1b02eebed33d954ed552474da..eef43a7eb52b3b96d6f3b8d78ac275ca3ad89482 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.2.21
 
+  *) mod_alias: Adjust log severity of "incomplete redirection target"
+     message. PR 44020.
+
  *) mod_rewrite: Check validity of each internal (int:) RewriteMap even if the
     RewriteEngine is disabled in server context, avoiding a crash while
     referencing the invalid int: map at runtime. PR 50994.
index 6a6856c5ca52a5e299a0fb24da474cd632257d64..4ad212b3d9d3c655ab615eb6a8f96de15be5eef8 100644 (file)
@@ -429,7 +429,7 @@ static int translate_alias_redir(request_rec *r)
             if (ret[0] == '/') {
 
                 ret = ap_construct_url(r->pool, ret, r);
-                ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
+                ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
                               "incomplete redirection target of '%s' for "
                               "URI '%s' modified to '%s'",
                               orig_target, r->uri, ret);