diff options
author | Eric Covener <covener@apache.org> | 2015-12-21 17:38:51 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2015-12-21 17:38:51 +0100 |
commit | d965bf637f72816135c60dbefff05ebc7560d6af (patch) | |
tree | 909d151958f3d3a832901bbacd6fae6f93fda9d3 /modules/cache | |
parent | cleanup of DEBUG log level to who all frame types receveid and sent (diff) | |
download | apache2-d965bf637f72816135c60dbefff05ebc7560d6af.tar.xz apache2-d965bf637f72816135c60dbefff05ebc7560d6af.zip |
disk_cache: improve logging of errors around reading stored headers
-- add RV and print cache filename from caller.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721210 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r-- | modules/cache/mod_cache_disk.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/modules/cache/mod_cache_disk.c b/modules/cache/mod_cache_disk.c index 14dee81ff7..9e83fa81d3 100644 --- a/modules/cache/mod_cache_disk.c +++ b/modules/cache/mod_cache_disk.c @@ -786,7 +786,7 @@ static apr_status_t read_table(cache_handle_t *handle, request_rec *r, /* ### What about APR_EOF? */ rv = apr_file_gets(w, MAX_STRING_LEN - 1, file); if (rv != APR_SUCCESS) { - ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(00717) + ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(00717) "Premature end of cache headers."); return rv; } @@ -865,6 +865,7 @@ static apr_status_t read_table(cache_handle_t *handle, request_rec *r, static apr_status_t recall_headers(cache_handle_t *h, request_rec *r) { disk_cache_object_t *dobj = (disk_cache_object_t *) h->cache_obj->vobj; + apr_status_t rv; /* This case should not happen... */ if (!dobj->hdrs.fd) { @@ -877,8 +878,16 @@ static apr_status_t recall_headers(cache_handle_t *h, request_rec *r) h->resp_hdrs = apr_table_make(r->pool, 20); /* Call routine to read the header lines/status line */ - read_table(h, r, h->resp_hdrs, dobj->hdrs.fd); - read_table(h, r, h->req_hdrs, dobj->hdrs.fd); + rv = read_table(h, r, h->resp_hdrs, dobj->hdrs.fd); + if (rv != APR_SUCCESS) { + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, + "Error reading response headers from %s for %s", dobj->hdrs.file, dobj->name); + } + rv = read_table(h, r, h->req_hdrs, dobj->hdrs.fd); + if (rv != APR_SUCCESS) { + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, + "Error reading request headers from %s for %s", dobj->hdrs.file, dobj->name); + } apr_file_close(dobj->hdrs.fd); |