SyslogAppender sends LoggingEvents to the local syslog system. More...
#include <SyslogAppender.hh>
Public Member Functions | |
virtual void | close () |
Calls closelog(3) to close the syslog file descriptor. More... | |
virtual bool | reopen () |
Calls closelog(3) and openlog(3). More... | |
SyslogAppender (const std::string &name, const std::string &syslogName, int facility=LOG_USER) | |
Instantiate a SyslogAppender with given name and name and facility for syslog. More... | |
virtual | ~SyslogAppender () |
Public Member Functions inherited from LayoutAppender | |
LayoutAppender (const std::string &name) | |
virtual bool | requiresLayout () const |
Check if the appender requires a layout. More... | |
virtual void | setLayout (Layout *layout=NULL) |
Set the Layout for this appender. More... | |
virtual | ~LayoutAppender () |
Public Member Functions inherited from AppenderSkeleton | |
virtual void | doAppend (const LoggingEvent &event) |
Log in Appender specific way. More... | |
virtual Filter * | getFilter () |
Get the Filter for this appender. More... | |
virtual Priority::Value | getThreshold () |
Get the threshold priority of this Appender. More... | |
virtual void | setFilter (Filter *filter) |
Set a Filter for this appender. More... | |
virtual void | setThreshold (Priority::Value priority) |
Set the threshold priority of this Appender. More... | |
virtual | ~AppenderSkeleton () |
Destructor for AppenderSkeleton. More... | |
Public Member Functions inherited from Appender | |
const std::string & | getName () const |
Get the name of this appender. More... | |
virtual | ~Appender () |
Destructor for Appender. More... | |
Static Public Member Functions | |
static int | toSyslogPriority (Priority::Value priority) |
Translates a log4cpp priority to a syslog priority. More... | |
Static Public Member Functions inherited from Appender | |
static void | closeAll () |
Call reopen() on all existing Appenders. More... | |
static Appender * | getAppender (const std::string &name) |
Get a pointer to an existing Appender. More... | |
static bool | reopenAll () |
Call reopen() on all existing Appenders. More... | |
Protected Member Functions | |
virtual void | _append (const LoggingEvent &event) |
Sends a LoggingEvent to syslog. More... | |
virtual void | open () |
Calls openlog(3). More... | |
Protected Member Functions inherited from LayoutAppender | |
Layout & | _getLayout () |
Return the layout of the appender. More... | |
Protected Member Functions inherited from AppenderSkeleton | |
AppenderSkeleton (const std::string &name) | |
Constructor for AppenderSkeleton. More... | |
Protected Member Functions inherited from Appender | |
Appender (const std::string &name) | |
Constructor for Appender. More... | |
Protected Attributes | |
int | _facility |
const std::string | _syslogName |
Additional Inherited Members | |
Public Types inherited from LayoutAppender | |
typedef BasicLayout | DefaultLayoutType |
SyslogAppender sends LoggingEvents to the local syslog system.
Definition at line 25 of file SyslogAppender.hh.
SyslogAppender::SyslogAppender | ( | const std::string & | name, |
const std::string & | syslogName, | ||
int | facility = LOG_USER |
||
) |
Instantiate a SyslogAppender with given name and name and facility for syslog.
Note that the C syslog API is process global, so instantion of a second SyslogAppender will 'overwrite' the syslog name of the first.
name | The name of the Appender |
syslogName | The ident parameter in the openlog(3) call. |
facility | The syslog facility to log to. Defaults to LOG_USER. |
|
virtual |
|
protectedvirtual |
Sends a LoggingEvent to syslog.
event | the LoggingEvent to log. |
Implements AppenderSkeleton.
|
virtual |
Calls closelog(3) to close the syslog file descriptor.
Implements AppenderSkeleton.
|
protectedvirtual |
Calls openlog(3).
|
virtual |
Calls closelog(3) and openlog(3).
Reimplemented from AppenderSkeleton.
|
static |
Translates a log4cpp priority to a syslog priority.
priority | The log4cpp priority. |
|
protected |
Definition at line 72 of file SyslogAppender.hh.
|
protected |
Definition at line 71 of file SyslogAppender.hh.