2013-04-03 80 views
0

我在我的Azure實例上使用System.Diagnostics。我在我的webconfig上有一些設置:logLevel的默認值是什麼?

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

我想知道什麼是默認的logLevel值。

回答

0

交換機沒有默認值。 value是必需屬性。如果未提供任何值,則應用程序將拋出ConfigurationErrorsException(來自here)。

瞭解更多關於配置here