From c27cded33d2157899e2cfafbc997851f363687e2 Mon Sep 17 00:00:00 2001 From: Ian Holsman Date: Fri, 8 Feb 2002 19:58:26 +0000 Subject: [PATCH] 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 --- modules/experimental/mod_cache.c | 3 +++ 1 file changed, 3 insertions(+) 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); } -- 2.50.1