You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.7 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. using System;
  2. using System.IO;
  3. namespace IPA.Logging.Printers
  4. {
  5. /// <summary>
  6. /// A printer for all messages to a unified log location.
  7. /// </summary>
  8. public class GlobalLogFilePrinter : GZFilePrinter
  9. {
  10. /// <summary>
  11. /// Provides a filter for this specific printer.
  12. /// </summary>
  13. /// <value>the filter level for this printer</value>
  14. public override Logger.LogLevel Filter { get; set; } = Logger.LogLevel.All;
  15. /// <summary>
  16. /// Prints an entry to the associated file.
  17. /// </summary>
  18. /// <param name="level">the <see cref="Logger.Level"/> of the message</param>
  19. /// <param name="time">the <see cref="DateTime"/> the message was recorded at</param>
  20. /// <param name="logName">the name of the log that sent the message</param>
  21. /// <param name="message">the message to print</param>
  22. public override void Print(Logger.Level level, DateTime time, string logName, string message)
  23. {
  24. foreach (var line in removeControlCodes.Replace(message, "").Split(new[] { "\n", Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries))
  25. FileWriter.WriteLine(Logger.LogFormat, line, logName, time, level.ToString().ToUpper());
  26. }
  27. /// <summary>
  28. /// Gets the <see cref="FileInfo"/> for the target file.
  29. /// </summary>
  30. /// <returns>the target file to write to</returns>
  31. protected override FileInfo GetFileInfo()
  32. {
  33. var logsDir = new DirectoryInfo("Logs");
  34. logsDir.Create();
  35. var finfo = new FileInfo(Path.Combine(logsDir.FullName, $"{DateTime.Now:yyyy.MM.dd.HH.mm.ss}.log"));
  36. return finfo;
  37. }
  38. }
  39. }