From: Ian Holsman Date: Fri, 8 Feb 2002 19:58:26 +0000 (+0000) Subject: add another log message showing when we server a cached file (as info not debug) X-Git-Tag: 2.0.32~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=398690311dcbc254f25ea19a3c0e83f528149092;p=apache add another log message showing when we server a cached file (as info not debug) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93344 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_cache.c b/modules/experimental/mod_cache.c index 1c48776ae5..86402527b0 100644 --- a/modules/experimental/mod_cache.c +++ b/modules/experimental/mod_cache.c @@ -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); }