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 Jun 4, 2013 · 5 revisions

Record logs into a designated Azure table storage.

Syntax

Public class AzureCloudTableLogger : IAzureCloudTableLogger 

Constructors

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.

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 fetal 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) 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.
Clone this wiki locally