Skip to content

Instantly share code, notes, and snippets.

@jbristowe
Created October 8, 2013 05:54
Show Gist options
  • Save jbristowe/6880119 to your computer and use it in GitHub Desktop.
Save jbristowe/6880119 to your computer and use it in GitHub Desktop.
using EQATEC.Analytics.Monitor;
using System.Diagnostics;
public class DebugLogger : ILogAnalyticsMonitor
{
public void LogMessage(string message)
{
Debug.WriteLine("MESSAGE: " + message);
}
public void LogError(string error)
{
Debug.WriteLine("ERROR: " + error);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment