#include <OstreamAppender.hh>
Inheritance diagram for log4cpp::OstreamAppender:
Public Member Functions | |
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. | |
Protected Member Functions | |
virtual void | _append (const LoggingEvent &event) |
Log in Appender specific way. | |
Protected Attributes | |
std::ostream * | _stream |
log4cpp::OstreamAppender::OstreamAppender | ( | const std::string & | name, | |
std::ostream * | stream | |||
) |
log4cpp::OstreamAppender::~OstreamAppender | ( | ) | [virtual] |
bool log4cpp::OstreamAppender::reopen | ( | ) | [virtual] |
Reopens the output destination of this Appender, e.g.
the logfile or TCP socket.
Reimplemented from log4cpp::AppenderSkeleton.
void log4cpp::OstreamAppender::close | ( | ) | [virtual] |
Release any resources allocated within the appender such as file handles, network connections, etc.
Implements log4cpp::AppenderSkeleton.
void log4cpp::OstreamAppender::_append | ( | const LoggingEvent & | event | ) | [protected, virtual] |
Log in Appender specific way.
Subclasses of Appender should implement this method to perform actual logging.
event | The LoggingEvent to log. |
Implements log4cpp::AppenderSkeleton.
std::ostream* log4cpp::OstreamAppender::_stream [protected] |