diff options
author | Vladimir Homutov <vl@nginx.com> | 2013-06-20 20:47:39 +0400 |
---|---|---|
committer | Vladimir Homutov <vl@nginx.com> | 2013-06-20 20:47:39 +0400 |
commit | 11ff177a9fe3129cd1c8b23e1850bfbc3e2c6ae1 (patch) | |
tree | 2289fc8b7b9f72564a23019ebb3438757ee74c74 /src/http/ngx_http_request.h | |
parent | 02cc52554f7ef326bb92df4ecced524e5d01ee19 (diff) | |
download | nginx-11ff177a9fe3129cd1c8b23e1850bfbc3e2c6ae1.tar.gz nginx-11ff177a9fe3129cd1c8b23e1850bfbc3e2c6ae1.zip |
Core: support several "error_log" directives.
When several "error_log" directives are specified in the same configuration
block, logs are written to all files with a matching log level.
All logs are stored in the singly-linked list that is sorted by log level in
the descending order.
Specific debug levels (NGX_LOG_DEBUG_HTTP,EVENT, etc.) are not supported
if several "error_log" directives are specified. In this case all logs
will use debug level that has largest absolute value.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 1babeb2b0..3b0858ace 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -585,6 +585,7 @@ extern ngx_http_header_out_t ngx_http_headers_out[]; #define ngx_http_set_connection_log(c, l) \ \ c->log->file = l->file; \ + c->log->next = l->next; \ if (!(c->log->log_level & NGX_LOG_DEBUG_CONNECTION)) { \ c->log->log_level = l->log_level; \ } |