Why is the App Insight LogLevel in appsettings being ignored?
You’ve got the LogLevel property for ApplicationInsights in the wrong place. Here’s what it should look like: “Logging”: { “LogLevel”: { “Default”: “Information”, “Microsoft”: “Warning”, “Microsoft.Hosting.Lifetime”: “Information” }, “ApplicationInsights”: { “LogLevel”: { “Default”: “Information”, “Microsoft”: “Warning”, “Microsoft.Hosting.Lifetime”: “Information” } } }, “ApplicationInsights”: { “InstrumentationKey”: “12345678-1234-5678-1234-1234567890ab” } The log-level configuration lives under the Logging parent, but … Read more