Inheritance diagram for StdioAppender:
Public Member Functions | |
this () | |
this (Layout layout) | |
uint | getMask () |
char[] | getName () |
void | append (Event event) |
Static Public Member Functions | |
this () | |
Private Member Functions | |
void | setLayout (Layout layout) |
Layout | getLayout () |
void | setNext (Appender next) |
Appender | getNext () |
void | close () |
Static Private Member Functions | |
uint | nextMask () |
Static Private Attributes | |
uint | mask |
Definition at line 49 of file StdioAppender.d.
|
Get a unique fingerprint for this class Reimplemented from Appender. Definition at line 59 of file StdioAppender.d. References Appender::nextMask(). |
|
Create a basic ConsoleAppender Reimplemented from Appender. Definition at line 70 of file StdioAppender.d. |
|
Create with the given Layout Definition at line 80 of file StdioAppender.d. References Appender::setLayout(). |
|
Return the fingerprint for this class Reimplemented from Appender. Definition at line 91 of file StdioAppender.d. |
|
Return the name of this class Reimplemented from Appender. Definition at line 102 of file StdioAppender.d. |
|
Append an event to the output. Reimplemented from Appender. Definition at line 113 of file StdioAppender.d. References Layout::format(). |
|
Static method to return a mask for identifying the Appender. Each Appender class should have a unique fingerprint so that we can figure out which ones have been invoked for a given event. A bitmask is a simple an efficient way to do that. Definition at line 103 of file Appender.d. Referenced by this(), SocketAppender::this(), RollingFileAppender::this(), NullAppender::this(), FileAppender::this(), and ConsoleAppender::this(). |
|
Set the current layout to be that of the argument. Definition at line 118 of file Appender.d. Referenced by this(), SocketAppender::this(), RollingFileAppender::this(), NullAppender::this(), FileAppender::this(), and ConsoleAppender::this(). |
|
Return the current Layout Definition at line 129 of file Appender.d. References Appender::layout. |
|
Attach another appender to this one Definition at line 140 of file Appender.d. Referenced by LoggerInstance::addAppender(). |
|
Return the next appender in the list Definition at line 151 of file Appender.d. Referenced by LoggerInstance::append(). |
|
Close this appender. This would be used for file, sockets, and such like. Reimplemented in FileAppender, and SocketAppender. Definition at line 163 of file Appender.d. |
|
Definition at line 51 of file StdioAppender.d. |