From: Eric Covener Date: Fri, 31 Jan 2014 17:40:54 +0000 (+0000) Subject: add the URI to DEBUG message 00765 (and drop an exclamation point): X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5aa982f29c05a27c873e93520452bc41305eb45;p=thirdparty%2Fapache%2Fhttpd.git add the URI to DEBUG message 00765 (and drop an exclamation point): Cache provider's store_body failed! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1563193 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_cache.c b/modules/cache/mod_cache.c index 969c231fc5a..84030a9d199 100644 --- a/modules/cache/mod_cache.c +++ b/modules/cache/mod_cache.c @@ -697,7 +697,7 @@ static int cache_save_store(ap_filter_t *f, apr_bucket_brigade *in, rv = cache->provider->store_body(cache->handle, f->r, in, cache->out); if (rv != APR_SUCCESS) { ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, f->r, APLOGNO(00765) - "cache: Cache provider's store_body failed!"); + "cache: Cache provider's store_body failed for URI %s", f->r->uri); ap_remove_output_filter(f); /* give someone else the chance to cache the file */