Modifier and Type | Method and Description |
---|---|
LogEntry |
LogEntry.deepClone()
Creates a new
LogEntry that is a copy of the current instance. |
Modifier and Type | Method and Description |
---|---|
abstract void |
Appender.append(LogEntry entry)
Appends the specified log entry to the appender.
|
void |
ConsoleAppender.append(LogEntry entry)
Appends the specified log entry to the appender.
|
void |
DebugAppender.append(LogEntry entry)
Appends the specified log entry to the appender.
|
void |
FileAppender.append(LogEntry logEntry)
Appends the log entry information to the appender.
|
void |
IAppender.append(LogEntry entry)
Log the specified log entry in Appender specific way.
|
void |
NullAppender.append(LogEntry entry)
Appends a log entry to NullAppender.
|
void |
FileAppender.append(LogEntry[] logEntries)
Appends a set of log entries to the appender.
|
String |
DebugFormatter.format(LogEntry entry)
Formats a log entry and return a string to be outputted.
|
String |
Formatter.format(LogEntry entry)
Formats a log entry and return a string to be outputted.
|
String |
IFormatter.format(LogEntry entry)
Formats a log entry and return a string to be outputted.
|
String |
SimpleFormatter.format(LogEntry entry)
Formats a log entry and return a string to be outputted.
|
String |
StandardFormatter.format(LogEntry entry)
Formats a log entry and return a string to be outputted.
|