A cloud logger using Azure Table Storage.
This library requires WindowsAzure.Storage (version 2.0+) and its dependencies.
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.
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.
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.
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.