Created
October 25, 2012 10:13
-
-
Save SimonCropp/3951812 to your computer and use it in GitHub Desktop.
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
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