]> granicus.if.org Git - apache/commitdiff
Downgrade error log messages which accompany a 404 request status from loglevel
authorStefan Fritsch <sf@apache.org>
Sat, 8 Oct 2011 07:36:56 +0000 (07:36 +0000)
committerStefan Fritsch <sf@apache.org>
Sat, 8 Oct 2011 07:36:56 +0000 (07:36 +0000)
error to info.

List thread at
http://mail-archives.apache.org/mod_mbox/httpd-dev/201110.mbox/%3Calpine.DEB.2.00.1110041948280.664@eru.sfritsch.de%3E

PR: 35768

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1180328 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/generators/mod_asis.c
modules/mappers/mod_actions.c
server/core.c

diff --git a/CHANGES b/CHANGES
index 6bd318f7788a8a43e4a402d841375302ecb1a979..f1a39afc6e8de5ed76be8a79e287598ea0cf9bc8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,10 @@ Changes with Apache 2.3.15
      PR 51714. [Stefan Fritsch, Jim Jagielski, Ruediger Pluem, Eric Covener,
      <lowprio20 gmail.com>]
 
+  *) core, mod_actions, mod_asis: Downgrade error log messages which accompany
+     a 404 request status from loglevel error to info. PR: 35768. [Stefan
+     Fritsch]
+
   *) core: Fix hook sorting with perl modules. PR: 45076. [Torsten Foertsch
      <torsten foertsch gmx net>]
 
index 5c724c020e37c373680cfd5f8005c7080e2d230a..fbf13965ec0b6de875d0c4630dc8bb7fe94ab303 100644 (file)
@@ -44,7 +44,7 @@ static int asis_handler(request_rec *r)
     }
 
     if (r->finfo.filetype == APR_NOFILE) {
-        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+        ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
                     "File does not exist: %s", r->filename);
         return HTTP_NOT_FOUND;
     }
index 1c44879f0dcbdd8d52fbc4b5a5d920b2277a194e..e1691c98c777550d72b20b1157ba1d3373284662 100644 (file)
@@ -187,7 +187,7 @@ static int action_handler(request_rec *r)
 
     if (action && (t = apr_table_get(conf->action_types, action))) {
         if (*t++ == '0' && r->finfo.filetype == APR_NOFILE) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+            ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
                           "File does not exist: %s", r->filename);
             return HTTP_NOT_FOUND;
         }
index 8dfb1bb31a4eabf266444bfde6426f0a136ef4b5..6858cad0de6a88830a3c2c53649f6a391e6c1f80 100644 (file)
@@ -4216,7 +4216,7 @@ static int default_handler(request_rec *r)
 
     if (r->method_number == M_GET || r->method_number == M_POST) {
         if (r->finfo.filetype == APR_NOFILE) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+            ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
                           "File does not exist: %s", r->filename);
             return HTTP_NOT_FOUND;
         }
@@ -4225,7 +4225,7 @@ static int default_handler(request_rec *r)
          * raw I/O on a dir.
          */
         if (r->finfo.filetype == APR_DIR) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+            ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
                           "Attempt to serve directory: %s", r->filename);
             return HTTP_NOT_FOUND;
         }
@@ -4234,7 +4234,7 @@ static int default_handler(request_rec *r)
             r->path_info && *r->path_info)
         {
             /* default to reject */
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+            ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
                           "File does not exist: %s",
                           apr_pstrcat(r->pool, r->filename, r->path_info, NULL));
             return HTTP_NOT_FOUND;