Here's a simplified version of the top answer. Add this to the <configuration>
element of your web.config
or App.config
file. It will create a trace.log
file in your project's bin/Debug
folder. Or, you can specify an absolute path for the log file using the initializeData
attribute.
<system.diagnostics>
<trace autoflush="true"/>
<sources>
<source name="System.Net" maxdatasize="9999" tracemode="protocolonly">
<listeners>
<add name="TraceFile" type="System.Diagnostics.TextWriterTraceListener" initializeData="trace.log"/>
</listeners>
</source>
</sources>
<switches>
<add name="System.Net" value="Verbose"/>
</switches>
</system.diagnostics>
It warns that the maxdatasize
and tracemode
attributes are not allowed, but they increase the amount of data that can be logged, and avoid logging everything in hex.