Skip to content

Instantly share code, notes, and snippets.

@gBritz
Created September 14, 2016 12:52
Show Gist options
  • Select an option

  • Save gBritz/eaad930b9d37a9b03a1a3a9a0ac76238 to your computer and use it in GitHub Desktop.

Select an option

Save gBritz/eaad930b9d37a9b03a1a3a9a0ac76238 to your computer and use it in GitHub Desktop.
Utility log method
private static void Log(string message, params object[] args)
{
if (!args.IsEmpty())
{
message = message.With(args);
}
var msg = "{0:dd/MM/yyyy hh:mm:ss.fff} {1}{2}".With(DateTime.Now, message, Environment.NewLine);
File.AppendAllText(@"C:\log.txt", msg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment