|
| | OstreamAppender (const std::string &name, std::ostream *stream) |
| |
| virtual | ~OstreamAppender () |
| |
| virtual bool | reopen () |
| | Reopens the output destination of this Appender, e.g.
|
| |
| virtual void | close () |
| | Release any resources allocated within the appender such as file handles, network connections, etc.
|
| |
| | 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.
|
| |
OstreamAppender appends LoggingEvents to ostreams.