I'm using System.Net tracing as described here:
http://ferozedaud.blogspot.com/2009/08/tracing-with-systemnet.html
But that traces every request made with HttpWebRequest. The trace file is huge. I only want to trace what happens when I am calling a certain URI eg:
https://api.example.com/oauth/RequestToken
Because connecting to this URI has problems after my web app has been running for several hours.
I want to ignore all requests to other URIs eg:
https://api.example.com/Foo
Because these requests are working fine, and are filling up the log with data that I do not need.