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

Function log_error_va_glue

server/log.c:1366–1378  ·  view source on GitHub ↗

For internal calls to log_error_core with self-composed arg lists */

Source from the content-addressed store, hash-verified

1364
1365/* For internal calls to log_error_core with self-composed arg lists */
1366static void log_error_va_glue(const char *file, int line, int module_index,
1367 int level, apr_status_t status,
1368 const server_rec *s, const conn_rec *c,
1369 const request_rec *r, apr_pool_t *pool,
1370 const char *fmt, ...)
1371{
1372 va_list args;
1373
1374 va_start(args, fmt);
1375 log_error_core(file, line, module_index, level, status, s, c, r, pool,
1376 fmt, args);
1377 va_end(args);
1378}
1379
1380AP_DECLARE(void) ap_log_error_(const char *file, int line, int module_index,
1381 int level, apr_status_t status,

Callers 1

log_data_coreFunction · 0.85

Calls 1

log_error_coreFunction · 0.85

Tested by

no test coverage detected