User1856098320 posted
I am able to get my aspnet 2.2 application to log to blob storage in Azure with no issue,
but I also get a ton of logging from the framework that I would like to throttle/turn down.
At this time, my appsettings.json is simply deployed with the following:
"Logging": {
"LogLevel": {
"Default": "Warning"
}
}
In my Azure "App Service logs" settings, I have Application Logging (Blob) set to
Information.
My understanding is:
* The setting in App Service logs would allow events of Information and above to be shown
* The setting in the appsettings file would define that only events of Warning and above would be shown
* The setting in the appsettings would take precedent and therefore only Warning and above would be logged to the blob
Is my understanding correct?