You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2014/01/31 18:40:54 UTC

svn commit: r1563193 - /httpd/httpd/trunk/modules/cache/mod_cache.c

Author: covener
Date: Fri Jan 31 17:40:54 2014
New Revision: 1563193

URL: http://svn.apache.org/r1563193
Log:
add the URI to DEBUG message 00765 (and drop an exclamation point):

  Cache provider's store_body failed!


Modified:
    httpd/httpd/trunk/modules/cache/mod_cache.c

Modified: httpd/httpd/trunk/modules/cache/mod_cache.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache.c?rev=1563193&r1=1563192&r2=1563193&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache.c Fri Jan 31 17:40:54 2014
@@ -697,7 +697,7 @@ static int cache_save_store(ap_filter_t 
         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 */