| 1540 | } |
| 1541 | |
| 1542 | AP_DECLARE(void) ap_log_data_(const char *file, int line, |
| 1543 | int module_index, int level, |
| 1544 | const server_rec *s, const char *label, |
| 1545 | const void *data, apr_size_t len, |
| 1546 | unsigned int flags) |
| 1547 | { |
| 1548 | log_data_core(file, line, module_index, level, s, NULL, NULL, label, |
| 1549 | data, len, flags); |
| 1550 | } |
| 1551 | |
| 1552 | AP_DECLARE(void) ap_log_rdata_(const char *file, int line, |
| 1553 | int module_index, int level, |
nothing calls this directly
no test coverage detected