Skip to content

Instantly share code, notes, and snippets.

@propagated
Created December 9, 2016 19:54
Show Gist options
  • Save propagated/cb6cbb19bf0c809561712c23fb4ce2bb to your computer and use it in GitHub Desktop.
Save propagated/cb6cbb19bf0c809561712c23fb4ce2bb to your computer and use it in GitHub Desktop.
static void Log(string message, string path = "LOG.txt")
{
Console.WriteLine(message);
using (System.IO.FileStream sw = new System.IO.FileStream(path, System.IO.FileMode.Append))
{
using (System.IO.StreamWriter sw2 = new System.IO.StreamWriter(sw))
{
sw2.WriteLine(message);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment