Inheritance diagram for ConsoleAppender:
Public Member Functions | |
this () | |
this (Layout layout) | |
uint | getMask () |
char[] | getName () |
void | append (Event event) |
Static Public Member Functions | |
static | this () |
Private Member Functions | |
void | setLayout (Layout layout) |
Layout | getLayout () |
void | setNext (Appender next) |
Appender | getNext () |
void | close () |
Static Private Member Functions | |
static uint | nextMask () |
Static Private Attributes | |
static uint | mask |
Definition at line 55 of file ConsoleAppender.d.
|
Get a unique fingerprint for this class Reimplemented from Appender. Definition at line 65 of file ConsoleAppender.d. |
|
Create a basic ConsoleAppender Reimplemented from Appender. Definition at line 76 of file ConsoleAppender.d. |
|
Create with the given Layout Definition at line 86 of file ConsoleAppender.d. |
|
Return the fingerprint for this class Reimplemented from Appender. Definition at line 97 of file ConsoleAppender.d. |
|
Return the name of this class Reimplemented from Appender. Definition at line 108 of file ConsoleAppender.d. |
|
Append an event to the output. Reimplemented from Appender. Definition at line 119 of file ConsoleAppender.d. References Layout::content(), Layout::footer(), Layout::header(), and version. |
|
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 106 of file Appender.d. Referenced by SocketAppender::this(), and NullAppender::this(). |
|
Set the current layout to be that of the argument. Definition at line 121 of file Appender.d. Referenced by SocketAppender::this(), and NullAppender::this(). |
|
Return the current Layout Definition at line 132 of file Appender.d. References Appender::layout. |
|
Attach another appender to this one Definition at line 143 of file Appender.d. Referenced by LoggerInstance::addAppender(). |
|
Return the next appender in the list Definition at line 154 of file Appender.d. References Appender::next. Referenced by LoggerInstance::append(). |
|
Close this appender. This would be used for file, sockets, and such like. Reimplemented in VersionIsolated::FileAppender, and SocketAppender. Definition at line 166 of file Appender.d. |
|
Definition at line 57 of file ConsoleAppender.d. |