如何在 .NET Core 3 中通过命令行参数设置日志级别



我有一个.NET Core 3.0控制台应用程序。我有一个Microsoft.Extensions.Logging记录器,我正在使用命令行参数构建Microsoft.Extensions.Configuration。

我的问题是"如何通过命令行参数设置日志级别?

如 ASP.NET Core 文档中的配置中所述,参数可以通过以下方式之一传递:

No prefix   CommandLineKey1=value1
Two dashes  --CommandLineKey2=value2, --CommandLineKey2 value2
Slash (/)   /CommandLineKey3=value3,  /CommandLineKey3 value3

例:

# Setting Warning level for all microsoft types
dotnet your.dll --Logging:LogLevel:Microsoft=Warning
# or setting Information level for your own types
dotnet run /Logging:LogLevel:YourNamespace:YourType Information

相关内容

  • 没有找到相关文章

最新更新