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 Aug 14, 2013
·
5 revisions
Record logs into a designated Azure table storage.
- Namespace:
ClickView.AzureCloudLogger
Public class AzureCloudTableLogger : IAzureCloudTableLogger
Name | Description |
---|---|
AzureCloudTableLogger(string, string, string, string, bool = true) | Initializes a new instance of the AzureCloudTableLogger class with optional IgnoreException argument default to true. |
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 fatal 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, string = null, Dictionary<string, object> = null) | Log a message string with the debug level. |
Error(object, Exception = null, string = null, Dictionary<string, object> = null) | Log a message string with the error level. |
Fatal(object, Exception = null, string = null, Dictionary<string, object> = null) | Log a message string with the fatal level. |
Info(object, Exception = null, string = null, Dictionary<string, object> = null) | Log a message string with the info level. |
Warn(object, Exception = null, string = null, Dictionary<string, object> = null) | Log a message string with the warn level. |