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

Function ap_log_perror_

server/log.c:1392–1402  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,
1394 const char *fmt, ...)
1395{
1396 va_list args;
1397
1398 va_start(args, fmt);
1399 log_error_core(file, line, module_index, level, status, NULL, NULL, NULL,
1400 p, fmt, args);
1401 va_end(args);
1402}
1403
1404AP_DECLARE(void) ap_log_rerror_(const char *file, int line, int module_index,
1405 int level, apr_status_t status,

Callers

nothing calls this directly

Calls 1

log_error_coreFunction · 0.85

Tested by

no test coverage detected