mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
ap_die(): follow up to r1657881.
Use log level DEBUG for AP_FILTER_ERROR => HTTP_INTERNAL_SERVER_ERROR. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1665643 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -102,8 +102,14 @@ static void ap_die_r(int type, request_rec *r, int recursive_error)
|
||||
* next->frec == ap_http_header_filter
|
||||
*/
|
||||
if (next) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01579)
|
||||
"Invalid response status %i", type);
|
||||
if (type != AP_FILTER_ERROR) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01579)
|
||||
"Invalid response status %i", type);
|
||||
}
|
||||
else {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(02831)
|
||||
"Response from AP_FILTER_ERROR");
|
||||
}
|
||||
type = HTTP_INTERNAL_SERVER_ERROR;
|
||||
}
|
||||
else {
|
||||
|
Reference in New Issue
Block a user