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

Function ap_log_cerror_

server/log.c:1446–1456  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1444}
1445
1446AP_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)

Callers

nothing calls this directly

Calls 1

log_error_coreFunction · 0.85

Tested by

no test coverage detected