Azure Functions 中的默认 logLevel 阈值是多少?

What is the default logLevel threshold in Azure Functions?

很清楚如何覆盖 host.json 中的日志级别:

如果没有明确设置,默认值是多少?

link 文档将不胜感激,以便将来参考。

default LogLevelInformation

实际上,azure function遵循ASP.NET Core日志级别配置。而在 ASP.NET Core 中,如果不显式设置最低级别,则默认值为 Information.

参考文档是here and here