0 votes
in Azure Function by

How can we configure Log Level for Azure Functions?

1 Answer

0 votes
by

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"

    }

  }

}

Related questions

0 votes
asked Feb 10, 2022 in Serverless FP by rajeshsharma
0 votes
asked Feb 25, 2022 in Azure Synapse Analytics by sharadyadav1986
...