| 1431 | } |
| 1432 | |
| 1433 | AP_DECLARE(void) ap_log_cserror_(const char *file, int line, int module_index, |
| 1434 | int level, apr_status_t status, |
| 1435 | const conn_rec *c, const server_rec *s, |
| 1436 | const char *fmt, ...) |
| 1437 | { |
| 1438 | va_list args; |
| 1439 | |
| 1440 | va_start(args, fmt); |
| 1441 | log_error_core(file, line, module_index, level, status, s, c, |
| 1442 | NULL, NULL, fmt, args); |
| 1443 | va_end(args); |
| 1444 | } |
| 1445 | |
| 1446 | AP_DECLARE(void) ap_log_cerror_(const char *file, int line, int module_index, |
| 1447 | int level, apr_status_t status, |
nothing calls this directly
no test coverage detected