Logger.cs 740 B

12345678910111213141516171819202122232425262728293031323334
  1. using System.IO;
  2. namespace GCHR.Control
  3. {
  4. public class Logger
  5. {
  6. private const string LogDatei = "logs\\gchr.log";
  7. public static string ExportLog = LogDatei;
  8. public static void Info(string message)
  9. {
  10. lock(LogDatei)
  11. {
  12. Log(message, LogDatei);
  13. }
  14. }
  15. public static void Progress(string message)
  16. {
  17. lock(ExportLog)
  18. {
  19. Log(message, ExportLog);
  20. }
  21. }
  22. private static void Log(string message, string datei)
  23. {
  24. using (var sw = new StreamWriter(datei, true))
  25. {
  26. sw.WriteLine(message);
  27. }
  28. }
  29. }
  30. }