Click or drag to resize
ISystemLogger Methods

[This is preliminary documentation and is subject to change.]

The ISystemLogger type exposes the following members.

Methods
  NameDescription
Public method void Debug(String, Object)
Logs a Debug event
Public method void DebugException(Exception, String, Object)
Logs a Debug event
Public method void Error(String, Object)
Logs an Error event, Error is reserved for critical errors that does not terminate the process
Public method void ErrorException(Exception, String, Object)
Logs an Error event, Error is reserved for critical errors that does not terminate the process
Public method void Fatal(String, Object)
Logs a Fatal event, Fatal is reserved for critical errors that result in process termination
Public method void FatalException(Exception, String, Object)
Logs a Fatal event, Fatal is reserved for critical errors that result in process termination
Public method void Info(String, Object)
Logs a Info event, Info is usefull for general startup/teardown messages
Public method void InfoException(Exception, String, Object)
Logs a Info event, Info is usefull for general startup/teardown messages
Public method void Trace(String, Object)
Logs a Trace event, Trace is usefull for logging method entries/exits
Public method void TraceException(Exception, String, Object)
Logs a Trace event, Trace is usefull for logging method entries/exits
Public method void Warn(String, Object)
Logs a Warn event, Warn is used for errors that can be recovered
Public method void WarnException(Exception, String, Object)
Logs a Warn event, Warn is used for errors that can be recovered
Top
See Also