Forked from eversinc33/gist:cd7f3e90643f69748862b87f394f1c16
Created
August 8, 2026 14:35
-
-
Save dwisiswant0/d19a3498e7cb330ae84622c1a53866db to your computer and use it in GitHub Desktop.
trace.exe.config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <system.diagnostics> | |
| <trace autoflush="true" /> | |
| <sources> | |
| <source name="System.Net" switchValue="Verbose"> | |
| <listeners> | |
| <add name="netlog" /> | |
| </listeners> | |
| </source> | |
| <source name="System.Net.Http" switchValue="Verbose"> | |
| <listeners> | |
| <add name="netlog" /> | |
| </listeners> | |
| </source> | |
| <source name="System.Net.Sockets" switchValue="Verbose"> | |
| <listeners> | |
| <add name="netlog" /> | |
| </listeners> | |
| </source> | |
| </sources> | |
| <sharedListeners> | |
| <add | |
| name="netlog" | |
| type="System.Diagnostics.TextWriterTraceListener" | |
| initializeData="C:\Users\Public\nettrace.log" /> | |
| </sharedListeners> | |
| </system.diagnostics> | |
| </configuration> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://x.com/eversinc33/status/2086011305128079857