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

Function ap_log_error_

server/log.c:1380–1390  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1378}
1379
1380AP_DECLARE(void) ap_log_error_(const char *file, int line, int module_index,
1381 int level, apr_status_t status,
1382 const server_rec *s, const char *fmt, ...)
1383{
1384 va_list args;
1385
1386 va_start(args, fmt);
1387 log_error_core(file, line, module_index, level, status, s, NULL, NULL,
1388 NULL, fmt, args);
1389 va_end(args);
1390}
1391
1392AP_DECLARE(void) ap_log_perror_(const char *file, int line, int module_index,
1393 int level, apr_status_t status, apr_pool_t *p,

Callers

nothing calls this directly

Calls 1

log_error_coreFunction · 0.85

Tested by

no test coverage detected