MCPcopy Create free account
hub / github.com/apache/httpd / ap_log_cserror_

Function ap_log_cserror_

server/log.c:1433–1444  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1431}
1432
1433AP_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
1446AP_DECLARE(void) ap_log_cerror_(const char *file, int line, int module_index,
1447 int level, apr_status_t status,

Callers

nothing calls this directly

Calls 1

log_error_coreFunction · 0.85

Tested by

no test coverage detected