]> granicus.if.org Git - apache/commitdiff
add another log message showing when we server a cached file (as info not debug)
authorIan Holsman <ianh@apache.org>
Fri, 8 Feb 2002 19:58:26 +0000 (19:58 +0000)
committerIan Holsman <ianh@apache.org>
Fri, 8 Feb 2002 19:58:26 +0000 (19:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93344 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_cache.c

index 1c48776ae5b5850c4fbaa888f33ccf2119468241..86402527b0a013c345f44bfb69d31791362d34e3 100644 (file)
@@ -332,6 +332,9 @@ 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);
     return ap_pass_brigade(f->next, bb);
 }