Skip to content

Instantly share code, notes, and snippets.

@writeameer
Created June 25, 2012 07:27
Show Gist options
  • Save writeameer/2987158 to your computer and use it in GitHub Desktop.
Save writeameer/2987158 to your computer and use it in GitHub Desktop.
Logging
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