欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

.NET Framework 的system.diagnostics

程序员文章站 2024-01-21 20:42:28
...
<system.diagnostics>
<sources>
    <source name="System.ServiceModel" switchValue="Warning" propagateActivity="true">
    <listeners>
        <add name="xml" />
    </listeners>
    </source>
</sources>
<sharedListeners>
    <add name="xml" type="System.Diagnostics.XmlWriterTraceListener" initializeData="x:\log\wcf.log" />
</sharedListeners>
</system.diagnostics>

 配置文件中加入这段后,可以记录WCF的运行时日志。