Skip to content

Instantly share code, notes, and snippets.

@SimonCropp
Created October 25, 2012 10:13
Show Gist options
  • Save SimonCropp/3951812 to your computer and use it in GitHub Desktop.
Save SimonCropp/3951812 to your computer and use it in GitHub Desktop.
public static class Log
{
public static void Debug(string message)
{
throw new NotImplementedException();
}
public static void Debug(string message, Exception exception)
{
throw new NotImplementedException();
}
public static void Info(string message)
{
throw new NotImplementedException();
}
public static void Info(string message, Exception exception)
{
throw new NotImplementedException();
}
public static void Warn(string message)
{
throw new NotImplementedException();
}
public static void Warn(string message, Exception exception)
{
throw new NotImplementedException();
}
public static void Error(string message)
{
throw new NotImplementedException();
}
public static void Error(string message, Exception exception)
{
throw new NotImplementedException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment