![]() | ILogger Methods |
The ILogger type exposes the following members.
Name | Description | |
---|---|---|
![]() | Finest(Exception) |
Logs a throwable at
LogLevel.Finest
. The message of the Throwable will be the message.
|
![]() | Finest(String) |
Logs a message at
LogLevel.Finest
.
|
![]() | Finest(String, Exception) |
Logs message with associated throwable information at
LogLevel.Finest
.
|
![]() | GetLevel | Gets the logging Level. |
![]() | Info |
Logs a message at LogLevel.Info
.
|
![]() | IsFinestEnabled |
Checks if the
LogLevel.Finest
is enabled.
|
![]() | IsLoggable | Checks if a message at the provided level is going to be logged by this logger. |
![]() | Log(LogLevel, String) | Logs a message at the provided Level. |
![]() | Log(LogLevel, String, Exception) | Logs message with associated throwable information at the provided level. |
![]() | Severe(Exception) |
Logs a throwable at
LogLevel.Severe
. The message of the Throwable will be the message.
|
![]() | Severe(String) |
Logs a message at
LogLevel.Severe
.
|
![]() | Severe(String, Exception) |
Logs message with associated throwable information at
LogLevel.Severe
.
|
![]() | Warning(Exception) |
Logs a throwable at
LogLevel.Warning
. The message of the Throwable will be the message.
|
![]() | Warning(String) |
Logs a message at
LogLevel.Warning
.
|
![]() | Warning(String, Exception) |
Logs message with associated throwable information at
LogLevel.Warning
.
|