Elmah plugin for Azure Table Storage
If you use NuGet to add this project, option 1 will be used, by default.
By connection string name:
<errorLog type="Elmah.AzureTableStorage.AzureTableStorageErrorLog, Elmah.AzureTableStorage"
connectionStringName="ElmahAzureTableStorage" />
Make sure you add an element under the connectionStrings
element.
By application setting:
<errorLog type="Elmah.AzureTableStorage.AzureTableStorageErrorLog, Elmah.AzureTableStorage"
connectionStringAppKey="ElmahAzureTableStorage" />
Make sure you add an element under the appSettings
element.
By connection string:
<errorLog type="Elmah.AzureTableStorage.AzureTableStorageErrorLog, Elmah.AzureTableStorage"
connectionString="UseDevelopmentStorage=true" />
Isolate per application in a single Elmah store
<errorLog type="Elmah.AzureTableStorage.AzureTableStorageErrorLog, Elmah.AzureTableStorage"
connectionString="UseDevelopmentStorage=true" applicationName="MyApp" />
Set a custom table name (defaults to "Elmah"):
<errorLog type="Elmah.AzureTableStorage.AzureTableStorageErrorLog, Elmah.AzureTableStorage"
connectionString="UseDevelopmentStorage=true" tableName="MyCustomElmahTable" />