How can we configure Log Level for Azure Functions?
We can use the below code to log level for azure function
{ "version": "2.0", "logging": { "fileLoggingMode": "always", "logLevel": { "default": "Information", "Host.Results": "Error", "Function": "Trace", "Host.Aggregator": "Trace" } }}
{
"version": "2.0",
"logging": {
"fileLoggingMode": "always",
"logLevel": {
"default": "Information",
"Host.Results": "Error",
"Function": "Trace",
"Host.Aggregator": "Trace"
}