comparison src/core/ngx_log.c @ 201:267ea1d98683

nginx-0.0.1-2003-11-30-23:03:18 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 30 Nov 2003 20:03:18 +0000
parents 8dee38ea9117
children 6e0fef527732
comparison
equal deleted inserted replaced
200:abeaebe0a33c 201:267ea1d98683
167 va_end(args); 167 va_end(args);
168 } 168 }
169 } 169 }
170 170
171 171
172 void ngx_log_debug_core(ngx_log_t *log, const char *fmt, ...) 172 void ngx_log_debug_core(ngx_log_t *log, ngx_err_t err, const char *fmt, ...)
173 { 173 {
174 va_list args; 174 va_list args;
175 175
176 va_start(args, fmt); 176 va_start(args, fmt);
177 ngx_log_error_core(NGX_LOG_DEBUG, log, 0, fmt, args); 177 ngx_log_error_core(NGX_LOG_DEBUG, log, err, fmt, args);
178 va_end(args); 178 va_end(args);
179 } 179 }
180 180
181 181
182 void ngx_assert_core(ngx_log_t *log, const char *fmt, ...) 182 void ngx_assert_core(ngx_log_t *log, const char *fmt, ...)