Now I have the following data in my tracer log:
I would like to remove them. Do not tell me what configuration in the config should be corrected? I want to log the sending via SMTP, but I don’t like something like that. I just have a line that goes to the right of the table.
Here is my App.config:
<system.diagnostics> <trace autoflush="true"></trace> <sources> <source name="System.Net" > <listeners> <add name="MyTraceFile"/> </listeners> </source> <source name="System.Net.Sockets"> <listeners> <add name="MyTraceFile"/> </listeners> </source> </sources> <sharedListeners> <add name="MyTraceFile" type="System.Diagnostics.TextWriterTraceListener" initializeData="System.Net.trace.log" traceOutputOptions="ProcessId, DateTime" /> </sharedListeners> <switches> <add name="System.Net" value="Verbose" /> <add name="System.Net.Sockets" value="Verbose" /> </switches>