changeset 2644:2682d042328d stable-0.6

r2447, r2466, r2467 merge: set the error level as default http error_log level
author Igor Sysoev <igor@sysoev.ru>
date Wed, 01 Apr 2009 16:19:22 +0000
parents 002f6fd88177
children 2baa184412b8
files src/core/ngx_log.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/core/ngx_log.c
+++ b/src/core/ngx_log.c
@@ -302,7 +302,10 @@ ngx_set_error_log_levels(ngx_conf_t *cf,
         }
     }
 
-    if (log->log_level == NGX_LOG_DEBUG) {
+    if (log->log_level == 0) {
+        log->log_level = NGX_LOG_ERR;
+
+    } else if (log->log_level == NGX_LOG_DEBUG) {
         log->log_level = NGX_LOG_DEBUG_ALL;
     }