Skip to content
This repository has been archived by the owner on Apr 22, 2021. It is now read-only.

AzureCloudTableLogger Class

Travis edited this page Aug 14, 2013 · 5 revisions

Record logs into a designated Azure table storage.

Syntax

Public class AzureCloudTableLogger : IAzureCloudTableLogger 

Constructors

Name Description
AzureCloudTableLogger(string, string, string, string, bool = true) Initializes a new instance of the AzureCloudTableLogger class with optional IgnoreException argument default to true.

Public Instance Properties

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.

Public Instance Methods

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.