Do other people use the Azure portal Log Stream console to watch logging output from their apps? If so, you might have seen that there's a lot of "noisy" [Information] messages from Microsoft.AspNetCore.* which I can't figure out how to disable. It's a terrible burden trying to see my messages in the clutter.
My appsettings.json is deployed with this:
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
But it makes no difference at all. I've tried various combinations without success. Maybe I'm using the wrong technique.
Thanks,
Greg