I’m debugging an azure function in vs code using the azure functions extension. For the love of god, does anyone know how to stop the host from writing to console after every single storage queue poll?

>Solution :
I believe you can solve this by modifying your logging logLevel in your host.json file.
If I’m not mistaken, the category for Storage Queue Polling should be: Azure.Core or possibly Azure.Core1. You might want to play around with these settings.
For example:
{
"version": "2.0",
"functionTimeout": "00:10:00",
"logging": {
"logLevel": {
"default": "Information",
"Azure.Core": "Warning",
"Azure.Core1": "Warning"
},
"applicationInsights": {
"samplingSettings": {
"isEnabled": false
}
}
}
}