From: Bill Stoddard Date: Fri, 17 May 2002 03:05:40 +0000 (+0000) Subject: This is a debug message X-Git-Tag: 2.0.37~361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08092d39a3a8bc13496394c40e05808adeef9f9d;p=apache This is a debug message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95146 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_cache.c b/modules/experimental/mod_cache.c index dde7c4e39d..d10884bc1f 100644 --- a/modules/experimental/mod_cache.c +++ b/modules/experimental/mod_cache.c @@ -336,7 +336,7 @@ static int cache_out_filter(ap_filter_t *f, apr_bucket_brigade *bb) return ap_pass_brigade(f->next, bb); } - ap_log_error(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO, 0, r->server, + ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r->server, "cache: running CACHE_OUT filter"); /* TODO: Handle getting errors on either of these calls @@ -348,8 +348,8 @@ static int cache_out_filter(ap_filter_t *f, apr_bucket_brigade *bb) /* This filter is done once it has served up its content */ ap_remove_output_filter(f); - ap_log_error(APLOG_MARK, APLOG_INFO | APLOG_NOERRNO, 0, r->server, - "cached version of %s being served", r->uri); + ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r->server, + "cache: serving cached version of %s", r->uri); return ap_pass_brigade(f->next, bb); }