LogManager.cs 408 B

123456789101112131415
  1. using System;
  2. using System.IO;
  3. namespace UAS_LabelMachine.PublicMethod
  4. {
  5. class LogManager
  6. {
  7. public static void DoLog(string Message)
  8. {
  9. StreamWriter sw = File.AppendText("Log/" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt");
  10. sw.WriteLine("\n" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + " " + Message + "\n");
  11. sw.Close();
  12. }
  13. }
  14. }