| 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, |
| 1394 | const char *fmt, ...) |
| 1395 | { |
| 1396 | va_list args; |
| 1397 | |
| 1398 | va_start(args, fmt); |
| 1399 | log_error_core(file, line, module_index, level, status, NULL, NULL, NULL, |
| 1400 | p, fmt, args); |
| 1401 | va_end(args); |
| 1402 | } |
| 1403 | |
| 1404 | AP_DECLARE(void) ap_log_rerror_(const char *file, int line, int module_index, |
| 1405 | int level, apr_status_t status, |
nothing calls this directly
no test coverage detected