diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-11-30 20:03:18 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-11-30 20:03:18 +0000 |
commit | 865c150cb473fca8ff91d60ddd539ac6dbbe02ee (patch) | |
tree | 1ae51b35fbfaa069adf98db8a4c98887bdd3f9a8 /src/core/ngx_log.c | |
parent | c2bba092eb07ea5fcd2e2ee987e3a304f755a3c7 (diff) | |
download | nginx-865c150cb473fca8ff91d60ddd539ac6dbbe02ee.tar.gz nginx-865c150cb473fca8ff91d60ddd539ac6dbbe02ee.zip |
nginx-0.0.1-2003-11-30-23:03:18 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 627c507fc..e3e292ced 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -169,12 +169,12 @@ void ngx_log_error(int level, ngx_log_t *log, ngx_err_t err, } -void ngx_log_debug_core(ngx_log_t *log, const char *fmt, ...) +void ngx_log_debug_core(ngx_log_t *log, ngx_err_t err, const char *fmt, ...) { va_list args; va_start(args, fmt); - ngx_log_error_core(NGX_LOG_DEBUG, log, 0, fmt, args); + ngx_log_error_core(NGX_LOG_DEBUG, log, err, fmt, args); va_end(args); } |