我已将 WCF 配置为记录到跟踪文件,并且可以在 Microsoft 服务跟踪查看器中查看跟踪文件。问题是在发送/接收的消息和写入文件的日志记录之间有大约 30 分钟的延迟。
有谁知道这可能是为什么?
下面我已经粘贴了来自 btsntsvc64.exe.config 的相关内容
> <system.diagnostics>
> <sources>
> <source name="System.ServiceModel" switchValue="Verbose">
> <listeners>
> <add name="xml" />
> </listeners>
> </source>
> <source name="System.ServiceModel.MessageLogging" switchValue="Verbose, ActivityTracing">
> <listeners>
> <add name="xml" />
> </listeners>
> </source>
> <source name="System.Runtime.Serialization" switchValue="Verbose">
> <listeners>
> <add name="xml" />
> </listeners>
> </source>
> </sources>
> <sharedListeners>
> <add name="xml" type="System.Diagnostics.XmlWriterTraceListener" traceOutputOptions="LogicalOperationStack"
> initializeData="C:\logs\BizTalk\WCFTrace.svclog" />
> </sharedListeners>
> <trace autoflush="true" /> </system.diagnostics> <system.serviceModel>
> <diagnostics>
> <messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="true"
> logMessagesAtTransportLevel="false" />
> </diagnostics> </system.serviceModel>