We have just started using an Azure Durable Orchestration Function which is linked to application insights.
The telemetry is filling up with logs we cannot seem to stop:
Time 16:51:03 Message funcname-applease: Starting lease renewal with token xxxxxxxxxxxxxxxxxx Category DurableTask.AzureStorage EventId 123 ProcessId 8964
Time 16:51:03 Message funcname-applease: Lease renewal with token xxxxxxxxxxxxxxxxxx succeeded Category DurableTask.AzureStorage EventId 124
We are getting 100s a minute and despite our Logging settings they are not stopping:
{
"version": "2.0",
"extensions": {
"serviceBus": {
"messageHandlerOptions": {
"maxConcurrentCalls": 1
}
}
},
"functionTimeout": "00:04:59",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"maxTelemetryItemsPerSecond": 20
}
},
"logLevel": {
"default": "Information",
"Function": "Information",
"Host.Results": "Information",
"Host.Aggregator": "Information",
"Host.Triggers.DurableTask": "Error",
"DurableTask.AzureStorage": "Error",
"DurableTask.Core": "Error"
}
}
}
These messages do not appear to have a LogLevel and despite setting all of these to none through to only error they still keep coming.
Does anyone know how to stop these logs?