I am working on my first project on Application Insights and facing some issues.
Tech Stack
Project Type - Azure Durable Functions
.NetStandard 2.0
Visual Studio 2017
Problem
In the HTTPStart method, I add a custom log message using ILogger (and TraceWriter).
Sample Code
log.LogInformation("******* Test Message********");
When I am running application on my local, host file is as:
{
"version": "2.0",
"logger": {
"categoryFilter": {
"categoryLevels": {
"Host.Triggers.DurableTask": "Information"
}
}
}
}
With this background, I am trying to figure out the following issues:
The problem is, I can see generic statements (out of the box) being logged but the custom log with the help of ILogger / TraceWriter are not being shown.