每天生成WCF跟踪文件

时间:2017-06-27 11:23:55

标签: c# wcf

我想每天在WCF中生成跟踪文件,因为单个" .svc"在服务器中占用太多空间。目前,我们使用以下代码来记录WCF服务的跟踪 -

<system.diagnostics>
    <sources>
      <source name="System.ServiceModel" switchValue="Warning, ActivityTracing" propagateActivity="true">
        <listeners>
          <add type="System.Diagnostics.DefaultTraceListener" name="Default">
            <filter type="" />
          </add>
          <add name="ServiceModelTraceListener">
            <filter type="" />
          </add>
        </listeners>
      </source>
    </sources>
    <sharedListeners>
      <add initializeData="E:\ServiceLog\WCF_Tracelog.svclog" type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
        <filter type="" />
      </add>
    </sharedListeners>
    <trace autoflush="true" />
  </system.diagnostics> 

我尝试使用下面的代码来记录每天的跟踪,但不知怎的,它不起作用 -

<system.diagnostics>
   <sources>
       <source name="System.ServiceModel" switchValue="Warning, ActivityTracing" >
          <listeners>
              <add name="xml"
                 type="System.Diagnostics.XmlWriterTraceListener"
                 initializeData="E:\ServiceLog\WCF_Tracelog{0:DD}-{0:MM}-{0:yyyy}.svclog" />
          </listeners>
       </source>
   </sources>
   <trace autoflush="true" /> 
</system.diagnostics>

请建议,上面的配置有什么问题,或者有什么不同的方法。

0 个答案:

没有答案