diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-01-14 18:19:42 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-01-14 18:19:42 +0000 |
commit | 0911f770834c3217e79da304c4d46d2606228bab (patch) | |
tree | dbda0b6c327919a44474fe869535cd969cb66fec /src/core/ngx_log.c | |
parent | 80340f0152ad5bb4c0a4fdf88873331e77eae5f5 (diff) | |
download | nginx-0911f770834c3217e79da304c4d46d2606228bab.tar.gz nginx-0911f770834c3217e79da304c4d46d2606228bab.zip |
nginx-0.0.1-2004-01-14-21:19:42 import
Diffstat (limited to 'src/core/ngx_log.c')
-rw-r--r-- | src/core/ngx_log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c index de238f526..12c59f50a 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -276,8 +276,8 @@ ngx_log_t *ngx_log_create_errlog(ngx_cycle_t *cycle, ngx_array_t *args) ngx_test_null(log, ngx_pcalloc(cycle->pool, sizeof(ngx_log_t)), NULL); ngx_test_null(log->file, ngx_conf_open_file(cycle, name), NULL); -#if 0 - /* STUB */ log->log_level = NGX_LOG_DEBUG; +#if 1 + /* STUB */ log->log_level = NGX_LOG_DEBUG | NGX_LOG_DEBUG_CORE | NGX_LOG_DEBUG_ALLOC | NGX_LOG_DEBUG_EVENT | NGX_LOG_DEBUG_HTTP; #endif return log; |