This repository has been archived by the owner on Apr 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
AzureCloudTableLogger Class
Travis edited this page Jun 4, 2013
·
5 revisions
Record logs into a designated Azure table storage.
- Namespace:
ClickView.AzureCloudLogger
Public class AzureCloudTableLogger : IAzureCloudTableLogger
Name | Description |
---|---|
AzureCloudTableLogger(string, string, string, LogLevel) | Initializes a new instance of the AzureCloudTableLogger class. |
AzureCloudTableLogger(string, string, string, string) | Initializes a new instance of the AzureCloudTableLogger class with LogLevel option as string. |
Name | Description |
---|---|
IsDebugEnabled | Checks if this logger is enabled for the debug level. |
IsErrorEnabled | Checks if this logger is enabled for the error level. |
IsFatalEnabled | Checks if this logger is enabled for the fetal level. |
IsInfoEnabled | Checks if this logger is enabled for the info level. |
IsWarnEnabled | Checks if this logger is enabled for the warn level. |
Name | Description |
---|---|
Debug(object, Exception = null) | Log a message object with the debug level. |
Error(object, Exception = null) | Log a message object with the error level. |
Fatal(object, Exception = null) | Log a message object with the fetal level. |
Info(object, Exception = null) | Log a message object with the info level. |
Warn(object, Exception = null) | Log a message object with the warn level. |