| 380 | } |
| 381 | |
| 382 | static void __attribute__ ((format (printf, 1, 2))) http_log(const char *fmt, ...) |
| 383 | { |
| 384 | va_list vargs; |
| 385 | va_start(vargs, fmt); |
| 386 | http_vlog(fmt, vargs); |
| 387 | va_end(vargs); |
| 388 | } |
| 389 | |
| 390 | static void http_av_log(void *ptr, int level, const char *fmt, va_list vargs) |
| 391 | { |
no test coverage detected