Skip to content

Instantly share code, notes, and snippets.

@shawnweisfeld
Last active August 29, 2015 14:15
Show Gist options
  • Save shawnweisfeld/ca5b510684b65cbe2d38 to your computer and use it in GitHub Desktop.
Save shawnweisfeld/ca5b510684b65cbe2d38 to your computer and use it in GitHub Desktop.
public class MyTraceListener : TraceListener
{
DiagnosticMonitorTraceListener _azureTL = new DiagnosticMonitorTraceListener();
public override void Write(string message)
{
_azureTL.Write(message);
}
public override void WriteLine(string message)
{
_azureTL.WriteLine(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment