rockacola / AzureCloudLogger

A cloud logger using Azure Table Storage

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AzureCloudLogger

A cloud logger using Azure Table Storage.

Dependencies

This library requires WindowsAzure.Storage (version 2.0+) and its dependencies.

Installation

Installation is easy through NuGet. Search for "azurecloudlogger" in NuGet manager, or install through Package Manager Console:

PM> Install-Package ClickView.AzureCloudLogger 

Alternatively, compiled binaries of all versions are available in Release directory.

Usages

Simpliest form of its usage.

string storageName = "AZURE_STORAGE_NAME";
string accessKey = "AZURE_STORAGE_ACCESS_KEY";
string tableName = "AZURE_TABLE_STORAGE_NAME";
AzureCloudTableLogger logger = new AzureCloudTableLogger(storageName, accessKey, tableName);

logger.Warn("Hello World");

Check out wiki for detailed documentations.

Inspect Logs

One of the easiest ways to inspect your logs is by using Neudesic's Azure Storage Explorer. Recommended using its latest beta release, version 5 preview 1.

License

Copyright (c) Travis Lin licensed under the MIT License. You are free to use/modify the source code whatever you want, as long as you retain names of contributor(s) of this project.

About

A cloud logger using Azure Table Storage

License:MIT License


Languages

Language:C# 100.0%