ISystemLogger Interface |
[This is preliminary documentation and is subject to change.]
[Missing <summary> documentation for "T:Netadmin.Core.Logging.ISystemLogger"]
Namespace: Netadmin.Core.Logging
The ISystemLogger type exposes the following members.
Name | Description | ||
---|---|---|---|
![]() | Boolean | IsDebugEnabled |
Returns true if logging is enabled for Debug
|
![]() | Boolean | IsErrorEnabled |
Returns true if logging is enabled for Error
|
![]() | Boolean | IsFatalEnabled |
Returns true if logging is enabled for Fatal
|
![]() | Boolean | IsInfoEnabled |
Returns true if logging is enabled for Info
|
![]() | Boolean | IsTraceEnabled |
Returns true if logging is enabled for Trace
|
![]() | Boolean | IsWarnEnabled |
Returns true if logging is enabled for Warn
|
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
|