From fff32326ca9009ebba0aadd24aa0683afe0d4a02 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 8 Apr 2004 15:58:25 +0000 Subject: nginx-0.0.3-2004-04-08-19:58:25 import --- src/http/ngx_http_request.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/http/ngx_http_request.c') diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index a2a0feda6..9233f89d8 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -231,7 +231,9 @@ static void ngx_http_init_request(ngx_event_t *rev) clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); c->log->file = clcf->err_log->file; - c->log->log_level = clcf->err_log->log_level; + if (!(c->log->log_level & NGX_LOG_DEBUG_CONNECTION)) { + c->log->log_level = clcf->err_log->log_level; + } if (c->buffer == NULL) { c->buffer = ngx_create_temp_hunk(c->pool, -- cgit