以下のコードをウェブサイトで使用したい。出力をファイルまたはWindowsイベントログに記録するためにconfig sections
に追加する必要があるweb.config
はどれですか?
using System.Diagnostics;
// Singleton in real code
Class Logger
{
// In constructor: Trace.AutoFlush = false;
public void Log(message)
{
String formattedLog = formatLog(message);
Trace.TraceInformation(formattedLog);
Trace.Flush();
}
}
system.diagnostics
セクションを使用する必要があります。テキストファイルのMSDNの例を次に示します。
<configuration>
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<add name="myListener"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="TextWriterOutput.log" />
<remove name="Default" />
</listeners>
</trace>
</system.diagnostics>
</configuration>
これはシステムイベントログ用です: http://msdn.Microsoft.com/en-us/library/system.diagnostics.eventlogtracelistener.aspx