Every 5 seconds my Azure Function is logging the http request to Azure blob storage and response to renew the host lock lease. Is there a setting in the logging section of the "host.json" file that will turn these off?
These are "Information" level messages. I've tried setting the log level for "Host" to "Warning" as follows:
{
"version": "2.0",
"logging": {
"logLevel": {
"default": "Debug",
"Host": "Warning"
}
}
}
but that doesn't seem to work.