| 1378 | } |
| 1379 | |
| 1380 | AP_DECLARE(void) ap_log_error_(const char *file, int line, int module_index, |
| 1381 | int level, apr_status_t status, |
| 1382 | const server_rec *s, const char *fmt, ...) |
| 1383 | { |
| 1384 | va_list args; |
| 1385 | |
| 1386 | va_start(args, fmt); |
| 1387 | log_error_core(file, line, module_index, level, status, s, NULL, NULL, |
| 1388 | NULL, fmt, args); |
| 1389 | va_end(args); |
| 1390 | } |
| 1391 | |
| 1392 | AP_DECLARE(void) ap_log_perror_(const char *file, int line, int module_index, |
| 1393 | int level, apr_status_t status, apr_pool_t *p, |
nothing calls this directly
no test coverage detected