|
| FileAppender (const std::string &name, const std::string &fileName, bool append=true, mode_t mode=00644) |
| Constructs a FileAppender.
|
|
| FileAppender (const std::string &name, int fd) |
| Constructs a FileAppender to an already open file descriptor.
|
|
virtual | ~FileAppender () |
|
virtual bool | reopen () |
| Reopens the logfile.
|
|
virtual void | close () |
| Closes the logfile.
|
|
virtual void | setAppend (bool append) |
| Sets the append vs truncate flag.
|
|
virtual bool | getAppend () const |
| Gets the value of the 'append' option.
|
|
virtual void | setMode (mode_t mode) |
| Sets the file open mode.
|
|
virtual mode_t | getMode () const |
| Gets the file open mode.
|
|
| LayoutAppender (const std::string &name) |
|
virtual | ~LayoutAppender () |
|
virtual bool | requiresLayout () const |
| Check if the appender requires a layout.
|
|
virtual void | setLayout (Layout *layout=NULL) |
| Set the Layout for this appender.
|
|
virtual | ~AppenderSkeleton () |
| Destructor for AppenderSkeleton.
|
|
virtual void | doAppend (const LoggingEvent &event) |
| Log in Appender specific way.
|
|
virtual bool | reopen () |
| Reopens the output destination of this Appender, e.g.
|
|
virtual void | close ()=0 |
| Release any resources allocated within the appender such as file handles, network connections, etc.
|
|
virtual bool | requiresLayout () const =0 |
| Check if the appender uses a layout.
|
|
virtual void | setLayout (Layout *layout)=0 |
| Set the Layout for this appender.
|
|
virtual void | setThreshold (Priority::Value priority) |
| Set the threshold priority of this Appender.
|
|
virtual Priority::Value | getThreshold () |
| Get the threshold priority of this Appender.
|
|
virtual void | setFilter (Filter *filter) |
| Set a Filter for this appender.
|
|
virtual Filter * | getFilter () |
| Get the Filter for this appender.
|
|
virtual | ~Appender () |
| Destructor for Appender.
|
|
virtual void | doAppend (const LoggingEvent &event)=0 |
| Log in Appender specific way.
|
|
virtual bool | reopen ()=0 |
| Reopens the output destination of this Appender, e.g.
|
|
virtual void | close ()=0 |
| Release any resources allocated within the appender such as file handles, network connections, etc.
|
|
virtual bool | requiresLayout () const =0 |
| Check if the appender uses a layout.
|
|
virtual void | setLayout (Layout *layout)=0 |
| Set the Layout for this appender.
|
|
const std::string & | getName () const |
| Get the name of this appender.
|
|
virtual void | setThreshold (Priority::Value priority)=0 |
| Set the threshold priority of this Appender.
|
|
virtual Priority::Value | getThreshold ()=0 |
| Get the threshold priority of this Appender.
|
|
virtual void | setFilter (Filter *filter)=0 |
| Set a Filter for this appender.
|
|
virtual Filter * | getFilter ()=0 |
| Get the Filter for this appender.
|
|