如果我TraceSource
这样定义:
private static TraceSource traceSource = new TraceSource("MyTrace");
然后从代码中发布消息:
traceSource.TraceEvent(TraceEventType.Information, 1, "My message");
当我web.config
有以下情况时:
<system.diagnostics>
<trace autoflush="true"/>
<sources >
<source name="MyTrace" switchName="Myswitch" >
<listeners>
<add name="textWriterListener" traceOutputOptions="DateTime"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="Log\My_diagnostic.log">
</add>
<remove name="Default" />
</listeners>
</source>
</sources>
<switches>
<add name="Myswitch" value="Verbose" />
</switches>
</system.diagnostics>
我在My_diagnostic.log
跟踪文件中得到的是:
MyTrace Information: 1 : My message
DateTime=2013-03-05T04:45:54.9240441Z
运行此脚本的 IIS 服务器默认配置了英美代码页。
我的问题是,My_diagnostic.log
如果代码页设置为英语以外的任何语言,跟踪文件中的输出是否相同?日期/时间格式是否与我上面引用的相同?