aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2013-06-13 14:50:10 +0400
committerVladimir Homutov <vl@nginx.com>2013-06-13 14:50:10 +0400
commitaac7f7f4648dd5b1ada39931f4dc88e0645ce7c1 (patch)
tree84bbdb479b0ecfe807b29e2244a62998323976a4
parentde2ec2c65099b18f02020107fc97b5c639ed5aec (diff)
downloadnginx-aac7f7f4648dd5b1ada39931f4dc88e0645ce7c1.tar.gz
nginx-aac7f7f4648dd5b1ada39931f4dc88e0645ce7c1.zip
Core: moved initialization of log level.
The cycle->new_log->log_level should only be initialized by ngx_init_cycle() if no error logs were found in the configuration. This move allows to get rid of extra initialization in ngx_error_log().
-rw-r--r--src/core/ngx_cycle.c3
-rw-r--r--src/core/ngx_log.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/core/ngx_cycle.c b/src/core/ngx_cycle.c
index de817750c..44edbafd4 100644
--- a/src/core/ngx_cycle.c
+++ b/src/core/ngx_cycle.c
@@ -84,7 +84,6 @@ ngx_init_cycle(ngx_cycle_t *old_cycle)
cycle->pool = pool;
cycle->log = log;
- cycle->new_log.log_level = NGX_LOG_ERR;
cycle->old_cycle = old_cycle;
cycle->conf_prefix.len = old_cycle->conf_prefix.len;
@@ -344,6 +343,8 @@ ngx_init_cycle(ngx_cycle_t *old_cycle)
if (cycle->new_log.file == NULL) {
goto failed;
}
+
+ cycle->new_log.log_level = NGX_LOG_ERR;
}
/* open the new files */
diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c
index 20f50971d..ea08ba744 100644
--- a/src/core/ngx_log.c
+++ b/src/core/ngx_log.c
@@ -454,7 +454,5 @@ ngx_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
return NGX_CONF_OK;
}
- cf->cycle->new_log.log_level = 0;
-
return ngx_log_set_levels(cf, &cf->cycle->new_log);
}