23#ifndef DETERMINISTICESPASYNCWEBSERVER_SYSLOG_H
24#define DETERMINISTICESPASYNCWEBSERVER_SYSLOG_H
30#if DETWS_ENABLE_SYSLOG
33enum class SyslogSeverity : uint8_t
46enum class SyslogFacility : uint8_t
49 SYSLOG_FAC_DAEMON = 3,
50 SYSLOG_FAC_LOCAL0 = 16,
51 SYSLOG_FAC_LOCAL1 = 17,
52 SYSLOG_FAC_LOCAL7 = 23,
64void syslog_init(
const char *server_ip, uint16_t port,
const char *hostname,
const char *appname,
65 SyslogFacility facility = SyslogFacility::SYSLOG_FAC_LOCAL0);
72size_t syslog_format(
char *out,
size_t cap, SyslogFacility facility, SyslogSeverity severity,
const char *hostname,
73 const char *appname,
const char *msg);
81bool syslog_log(SyslogSeverity severity,
const char *msg);
User-facing configuration for DeterministicESPAsyncWebServer.