logLevel的默认值是多少?

时间:2022-10-12 17:11:30

I'm using System.Diagnostics on my Azure instances. I have some settings on my webconfig:

我使用的系统。在我的Azure实例上的诊断。我的webconfig有一些设置:

<system.diagnostics>
    <switches>
      <!-- Off = 0, Error 1, Warning = 2, Info = 3, Verbose = 4 -->
      <add name="logLevel" value="2" />
    </switches>
    <trace autoflush="true"
     ...

I would like to know what is the default logLevel value.

我想知道什么是默认的logLevel值。

1 个解决方案

#1


0  

There is no default value for switch. value is required attribute. Application will throw ConfigurationErrorsException if no value is provided (from here).

交换机没有默认值。值是必要的属性。如果没有提供任何值(从这里),应用程序将抛出ConfigurationErrorsException。

Read more about configuration here.

阅读更多关于配置的内容。

#1


0  

There is no default value for switch. value is required attribute. Application will throw ConfigurationErrorsException if no value is provided (from here).

交换机没有默认值。值是必要的属性。如果没有提供任何值(从这里),应用程序将抛出ConfigurationErrorsException。

Read more about configuration here.

阅读更多关于配置的内容。