diff options
author | Joe Orton <jorton@apache.org> | 2023-10-26 09:31:16 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2023-10-26 09:31:16 +0200 |
commit | df126569e21ae506ad67a142f0a4fca38b192dea (patch) | |
tree | fa4699372e66c2e1aac951b0189dca2cf87c71bb /modules/proxy | |
parent | fr doc small corrections. (diff) | |
download | apache2-df126569e21ae506ad67a142f0a4fca38b192dea.tar.xz apache2-df126569e21ae506ad67a142f0a4fca38b192dea.zip |
Remove unnecessary APLOGNO() use in TRACE-level logging.
Submitted by: Jackie Chang <jackie.qq.chang gmail.com>
PR: 55627
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1913338 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy')
-rw-r--r-- | modules/proxy/ajp_header.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxy/ajp_header.c b/modules/proxy/ajp_header.c index a09a2e43a3..ce054368a9 100644 --- a/modules/proxy/ajp_header.c +++ b/modules/proxy/ajp_header.c @@ -228,7 +228,7 @@ static apr_status_t ajp_marshal_into_msgb(ajp_msg_t *msg, ap_log_rerror(APLOG_MARK, APLOG_TRACE8, 0, r, "Into ajp_marshal_into_msgb"); if ((method = sc_for_req_method_by_id(r)) == UNKNOWN_METHOD) { - ap_log_rerror(APLOG_MARK, APLOG_TRACE8, 0, r, APLOGNO(02437) + ap_log_rerror(APLOG_MARK, APLOG_TRACE8, 0, r, "ajp_marshal_into_msgb - Sending unknown method %s as request attribute", r->method); method = SC_M_JK_STORED; |