| 1444 | } |
| 1445 | |
| 1446 | AP_DECLARE(void) ap_log_cerror_(const char *file, int line, int module_index, |
| 1447 | int level, apr_status_t status, |
| 1448 | const conn_rec *c, const char *fmt, ...) |
| 1449 | { |
| 1450 | va_list args; |
| 1451 | |
| 1452 | va_start(args, fmt); |
| 1453 | log_error_core(file, line, module_index, level, status, c->base_server, c, |
| 1454 | NULL, NULL, fmt, args); |
| 1455 | va_end(args); |
| 1456 | } |
| 1457 | |
| 1458 | #define BYTES_LOGGED_PER_LINE 16 |
| 1459 | #define LOG_BYTES_BUFFER_SIZE (BYTES_LOGGED_PER_LINE * 3 + 2) |
nothing calls this directly
no test coverage detected