| ISystemLogger Methods |
[This is preliminary documentation and is subject to change.]
The ISystemLogger type exposes the following members.
| Name | Description | ||
|---|---|---|---|
| void | Debug(String, Object) |
Logs a Debug event
| |
| void | DebugException(Exception, String, Object) |
Logs a Debug event
| |
| void | Error(String, Object) |
Logs an Error event, Error is reserved for critical errors that does not terminate the process
| |
| void | ErrorException(Exception, String, Object) |
Logs an Error event, Error is reserved for critical errors that does not terminate the process
| |
| void | Fatal(String, Object) |
Logs a Fatal event, Fatal is reserved for critical errors that result in process termination
| |
| void | FatalException(Exception, String, Object) |
Logs a Fatal event, Fatal is reserved for critical errors that result in process termination
| |
| void | Info(String, Object) |
Logs a Info event, Info is usefull for general startup/teardown messages
| |
| void | InfoException(Exception, String, Object) |
Logs a Info event, Info is usefull for general startup/teardown messages
| |
| void | Trace(String, Object) |
Logs a Trace event, Trace is usefull for logging method entries/exits
| |
| void | TraceException(Exception, String, Object) |
Logs a Trace event, Trace is usefull for logging method entries/exits
| |
| void | Warn(String, Object) |
Logs a Warn event, Warn is used for errors that can be recovered
| |
| void | WarnException(Exception, String, Object) |
Logs a Warn event, Warn is used for errors that can be recovered
|