Created
June 25, 2012 07:27
-
-
Save writeameer/2987158 to your computer and use it in GitHub Desktop.
Logging
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
internal class Logger | |
{ | |
public static void Info(string p0) | |
{ | |
Console.WriteLine(p0); | |
} | |
public static void Error(string couldNotLogIntoXmppServer) | |
{ | |
Console.WriteLine(couldNotLogIntoXmppServer); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment