mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00
- Be less verbose at levels INFO and DEBUG in mod_proxy* and mod_ssl
- Add some trace logging to core and http git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@951900 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -623,6 +623,12 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb)
|
||||
}
|
||||
} while ((len <= 0) && (++num_blank_lines < max_blank_lines));
|
||||
|
||||
if (APLOGrtrace5(r)) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_TRACE5, 0, r,
|
||||
"Request received from client: %s",
|
||||
ap_escape_logitem(r->pool, r->the_request));
|
||||
}
|
||||
|
||||
/* we've probably got something to do, ignore graceful restart requests */
|
||||
|
||||
r->request_time = apr_time_now();
|
||||
|
Reference in New Issue
Block a user