ロギングにエンタープライズライブラリ5.0を使用していますが、ロギングをオフにする方法がわかりません。現在、スイッチがオンになっていて、正常に動作しています。
これがロギングに関する私のweb.configセクションです。これは、EL5.0GUIを使用して自動的に作成されました。
<loggingConfiguration name="" tracingEnabled="true" defaultCategory="Logging Only">
<listeners>
<add name="Flat File Trace Listener"
type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=..."
listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=..."
fileName="WMSlog.log" formatter="Text Formatter" />
<add enabled="false" name="Formatted EventLog TraceListener" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FormattedEventLogTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=..."
listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FormattedEventLogTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=..."
source="Exception Handling" formatter="Text Formatter" />
</listeners>
<formatters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=..."
template="Timestamp: {timestamp}{newline}
Message: {message}{newline}
Category: {category}{newline}
Machine: {localMachine}{newline}
App Domain: {localAppDomain}{newline}
ProcessId: {localProcessId}{newline}
Process Name: {localProcessName}{newline}
Thread Name: {threadName}{newline}
Win32 ThreadId:{win32ThreadId}{newline}"
name="Text Formatter" />
</formatters>
<categorySources>
<add switchValue="Information" name="Logging Only">
<listeners>
<add name="Flat File Trace Listener" />
</listeners>
</add>
<add switchValue="Error" name="Errors Only">
<listeners>
<add name="Formatted EventLog TraceListener" />
</listeners>
</add>
</categorySources>
<specialSources>
<allEvents switchValue="All" name="All Events" />
<notProcessed switchValue="All" name="Unprocessed Category" />
<errors switchValue="Information" name="Logging Errors & Warnings" />
</specialSources>
</loggingConfiguration>
上記のいくつかの行で、データを...に置き換えました。
現時点では、これを使用してファイルにログインしています。
if (Logger.IsLoggingEnabled())
{
Logger.Write("Some text...");
}
Logger.IsLoggingEnabled()がfalseを返すようにする必要がありますが、どうすればよいですか?