Thanks in advance.
I want to use Nlog in Azure function V1,I have added Nlog and config file.I can see the ilogger object getting created, but that is not writing to console:(
Only tracewriter provided by Azure function alone working in console log.
Thanks in advance.
I want to use Nlog in Azure function V1,I have added Nlog and config file.I can see the ilogger object getting created, but that is not writing to console:(
Only tracewriter provided by Azure function alone working in console log.
Have never tried deploying an Azure Function, but many seems to have issues with deploying NLog.config (or other resource/config-files).
Maybe try putting the NLog-configuration into appsetting.json (Requires explicit load of NLogLoggingConfiguration) :
https://github.com/NLog/NLog.Extensions.Logging/wiki/Json-NLog-Config
The NLog Trace Target (with rawWrite=true) should support Azure Streaming Log.