diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2014-07-20 00:02:53 +0200 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2014-07-20 00:02:53 +0200 |
commit | 3a25c513f3008c2b025070258af7f0bcd52c3de8 (patch) | |
tree | 06fbb5b306f192250e8011f184182eacba656186 /modules/cache | |
parent | Rebuild. (diff) | |
download | apache2-3a25c513f3008c2b025070258af7f0bcd52c3de8.tar.xz apache2-3a25c513f3008c2b025070258af7f0bcd52c3de8.zip |
Add missing APLOGNO.
Refactor to keep APLOGNO on the same line as ap_log_error, when applicable.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1611978 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r-- | modules/cache/cache_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index 3cff6f69e8..5b57003dd9 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -461,7 +461,7 @@ int ap_cache_check_no_cache(cache_request_rec *cache, request_rec *r) return 0; } else { - ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, + ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(02657) "Incoming request is asking for an uncached version of " "%s, but we have been configured to ignore it and serve " "cached content anyway", r->unparsed_uri); @@ -501,7 +501,7 @@ int ap_cache_check_no_store(cache_request_rec *cache, request_rec *r) return 0; } else { - ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, + ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(02658) "Incoming request is asking for a no-store version of " "%s, but we have been configured to ignore it and serve " "cached content anyway", r->unparsed_uri); |