1

It's clear how to override log levels in host.json:

What is the default value though if it's not set explicitly?

A link to documentation would be appreciated for easier future reference.

Ivan Glasenberg
  • 29,865
  • 2
  • 44
  • 60
Max Ivanov
  • 5,695
  • 38
  • 52

1 Answers1

3

The default LogLevel is Information.

Actually, azure function follows the ASP.NET Core log level configuration. And in ASP.NET Core, if you don't explicitly set the minimum level, the default value is Information.

Reference docs are here and here.

Ivan Glasenberg
  • 29,865
  • 2
  • 44
  • 60