From: Bill Stoddard Date: Tue, 3 Dec 2002 23:08:22 +0000 (+0000) Subject: Listing the URLs which are not cachable is useful for building X-Git-Tag: pre_ajp_proxy~2505 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f729573a9528d4690967b30ae628d33c2cba98f2;p=apache Listing the URLs which are not cachable is useful for building the CacheDecline URL list for the config file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97772 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_cache.c b/modules/experimental/mod_cache.c index 1afa38f5d6..9a299bd29f 100644 --- a/modules/experimental/mod_cache.c +++ b/modules/experimental/mod_cache.c @@ -601,7 +601,7 @@ static int cache_in_filter(ap_filter_t *f, apr_bucket_brigade *in) if (reason) { ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, - "cache: response not cached. Reason: %s", reason); + "cache: %s not cached. Reason: %s", url, reason); /* remove this object from the cache * BillS Asks.. Why do we need to make this call to remove_url? * leave it in for now..