]> granicus.if.org Git - apache/commitdiff
This is a debug message
authorBill Stoddard <stoddard@apache.org>
Fri, 17 May 2002 03:05:40 +0000 (03:05 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 17 May 2002 03:05:40 +0000 (03:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95146 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_cache.c

index dde7c4e39d1a7676452749095c829da2315ab1f1..d10884bc1f53b70e0609d683e558b0d7a78dd522 100644 (file)
@@ -336,7 +336,7 @@ static int cache_out_filter(ap_filter_t *f, apr_bucket_brigade *bb)
         return ap_pass_brigade(f->next, bb);
     }
 
-    ap_log_error(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO, 0, r->server,
+    ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r->server,
             "cache: running CACHE_OUT filter");
 
     /* TODO: Handle getting errors on either of these calls 
@@ -348,8 +348,8 @@ static int cache_out_filter(ap_filter_t *f, apr_bucket_brigade *bb)
     /* This filter is done once it has served up its content */
     ap_remove_output_filter(f);
 
-    ap_log_error(APLOG_MARK, APLOG_INFO | APLOG_NOERRNO, 0, r->server,
-            "cached version of %s being served", r->uri);
+    ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r->server,
+            "cache: serving cached version of %s", r->uri);
     return ap_pass_brigade(f->next, bb);
 }