$search
#include <AbortAppender.hh>
Public Member Functions | |
AbortAppender (const std::string &name) | |
virtual void | close () |
virtual bool | reopen () |
virtual bool | requiresLayout () const |
virtual void | setLayout (Layout *layout) |
virtual | ~AbortAppender () |
Protected Member Functions | |
virtual void | _append (const LoggingEvent &event) |
This Appender causes the application to abort() upon the first append() call.
Definition at line 24 of file AbortAppender.hh.
log4cpp::AbortAppender::AbortAppender | ( | const std::string & | name | ) |
Definition at line 13 of file AbortAppender.cpp.
log4cpp::AbortAppender::~AbortAppender | ( | ) | [virtual] |
Definition at line 17 of file AbortAppender.cpp.
void log4cpp::AbortAppender::_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.
Definition at line 25 of file AbortAppender.cpp.
void log4cpp::AbortAppender::close | ( | ) | [virtual] |
Release any resources allocated within the appender such as file handles, network connections, etc.
Implements log4cpp::AppenderSkeleton.
Definition at line 21 of file AbortAppender.cpp.
bool log4cpp::AbortAppender::reopen | ( | ) | [virtual] |
Reopens the output destination of this Appender, e.g. the logfile or TCP socket.
Reimplemented from log4cpp::AppenderSkeleton.
Definition at line 29 of file AbortAppender.cpp.
bool log4cpp::AbortAppender::requiresLayout | ( | ) | const [virtual] |
The AbortAppender does not layout.
Implements log4cpp::AppenderSkeleton.
Definition at line 33 of file AbortAppender.cpp.
void log4cpp::AbortAppender::setLayout | ( | Layout * | layout | ) | [virtual] |
Set the Layout for this appender.
layout | The layout to use. |
Implements log4cpp::AppenderSkeleton.
Definition at line 37 of file AbortAppender.cpp.