WCF Tracing switchvalue is Off yet there is still a trace output being generated
问题 After having turned on WCF Tracing to assist with finding a problem, I now wish to turn off tracing. So I have changed my config file to this... <system.diagnostics> <sources> <source name="System.ServiceModel" switchValue="Off" > <!-- Information,ActivityTracing--> <listeners> <add name="xmlTraceListener" /> </listeners> </source> <source name="System.ServiceModel.MessageLogging" switchValue="Off" > <listeners> <add name="xmlTraceListener" /> </listeners> </source> </sources>