NLog.Extensions.AzureTableStorage
NLog.Extensions.AzureTableStorage copied to clipboard
Azure Table Storage Target for NLog
I get this error `Target cannot be found: 'AzureTableStorage'` when I enable the target in my NLog.config. Here are the files I dropped into my application to try to get...
Like the logger name is being used as partition key when there are many entries in the log it's almost impossible to retrieve or query them. The prefix already implemented...
When I install this NUget and build project I got message warning NU1701: Package 'NLog.Extensions.AzureTableStorage 1.1.4' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.0'. This package may...
When using Nlog, one usually has a different logger for each class he uses it in. By choosing logger name as Partition key, aren't you fragmenting you data in awkward...
Since I don't see any async / await, I am assuming the current call to azure table storage to log an entry is synchronous, not asynchronous. Please make it asynchronous....
Hello, In my application I am not allowed to store storage Connection String in Config. Will you please add connection string property in target. Thanks
It does not work, when container has slash. None error or exception, just record is not added. I.e. `_log.AddLog("PricingController/PaymentCreditCard", p_ex.Message, LogService.LogLevel.WARN); ` Does not work. `_log.AddLog("PricingControllerPaymentCreditCard", p_ex.Message, LogService.LogLevel.WARN);` works
Modifications are listed in README.md
Hello, I am using NLog extension in my Azure project. (I did pull-request for app setting and latest package a couple of months back for your project.) I found it...