From: Ruediger Pluem Date: Fri, 28 Dec 2007 14:16:35 +0000 (+0000) Subject: * Make loglevel consistent for similar situations. As this really should not X-Git-Tag: 2.3.0~1097 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8dd3619066fe8b71d484bee3198c1700a9da2ae;p=apache * Make loglevel consistent for similar situations. As this really should not happen set it to error. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@607245 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_disk_cache.c b/modules/cache/mod_disk_cache.c index 3d71eb8128..751f09f342 100644 --- a/modules/cache/mod_disk_cache.c +++ b/modules/cache/mod_disk_cache.c @@ -165,7 +165,7 @@ static apr_status_t file_cache_el_final(disk_cache_object_t *dobj, */ rv = apr_file_rename(dobj->tempfile, dobj->datafile, r->pool); if (rv != APR_SUCCESS) { - ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, r->server, + ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server, "disk_cache: rename tempfile to datafile failed:" " %s -> %s", dobj->tempfile, dobj->datafile); apr_file_remove(dobj->tempfile, r->pool); @@ -874,7 +874,7 @@ static apr_status_t store_headers(cache_handle_t *h, request_rec *r, cache_info rv = safe_file_rename(conf, dobj->tempfile, dobj->hdrsfile, r->pool); if (rv != APR_SUCCESS) { - ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, r->server, + ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server, "disk_cache: rename tempfile to varyfile failed: %s -> %s", dobj->tempfile, dobj->hdrsfile); apr_file_remove(dobj->tempfile, r->pool);