#include <syslog_sink.h>
Public Member Functions | |
syslog_sink (std::string ident="", int syslog_option=0, int syslog_facility=LOG_USER) | |
~syslog_sink () override | |
syslog_sink (const syslog_sink &)=delete | |
syslog_sink & | operator= (const syslog_sink &)=delete |
Public Member Functions inherited from spdlog::sinks::base_sink< Mutex > | |
base_sink ()=default | |
base_sink (const base_sink &)=delete | |
base_sink & | operator= (const base_sink &)=delete |
void | log (const details::log_msg &msg) final |
void | flush () final |
void | set_pattern (const std::string &pattern) final |
void | set_formatter (std::unique_ptr< spdlog::formatter > sink_formatter) final |
Public Member Functions inherited from spdlog::sinks::sink | |
sink () | |
sink (std::unique_ptr< spdlog::pattern_formatter > formatter) | |
virtual | ~sink ()=default |
bool | should_log (level::level_enum msg_level) const |
void | set_level (level::level_enum log_level) |
level::level_enum | level () const |
Protected Member Functions | |
void | sink_it_ (const details::log_msg &msg) override |
void | flush_ () override |
Protected Member Functions inherited from spdlog::sinks::base_sink< Mutex > | |
virtual void | set_pattern_ (const std::string &pattern) |
virtual void | set_formatter_ (std::unique_ptr< spdlog::formatter > sink_formatter) |
Private Member Functions | |
int | syslog_prio_from_level (const details::log_msg &msg) const |
Private Attributes | |
std::array< int, 7 > | priorities_ |
const std::string | ident_ |
Additional Inherited Members | |
Protected Attributes inherited from spdlog::sinks::base_sink< Mutex > | |
Mutex | mutex_ |
Protected Attributes inherited from spdlog::sinks::sink | |
level_t | level_ |
std::unique_ptr< spdlog::formatter > | formatter_ |
Sink that write to syslog using the syscall()
library call.
Locking is not needed, as syslog()
itself is thread-safe.
Definition at line 26 of file syslog_sink.h.
|
inlineexplicit |
Definition at line 30 of file syslog_sink.h.
|
inlineoverride |
Definition at line 45 of file syslog_sink.h.
|
delete |
|
inlineoverrideprotectedvirtual |
|
delete |
|
inlineoverrideprotectedvirtual |
Implements spdlog::sinks::base_sink< Mutex >.
Definition at line 54 of file syslog_sink.h.
|
inlineprivate |
Definition at line 70 of file syslog_sink.h.
|
private |
Definition at line 65 of file syslog_sink.h.
|
private |
Definition at line 62 of file syslog_sink.h.