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.

52 lines
2.0 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
6 years ago
6 years ago
  1. using System;
  2. using System.IO;
  3. namespace IPA.Logging.Printers
  4. {
  5. /// <summary>
  6. /// Prints log messages to the file specified by the name.
  7. /// </summary>
  8. public class PluginLogFilePrinter : 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. private string name;
  16. /// <summary>
  17. /// Gets the <see cref="FileInfo"/> for the target file.
  18. /// </summary>
  19. /// <returns>the file to write to</returns>
  20. protected override FileInfo GetFileInfo()
  21. {
  22. var logsDir = new DirectoryInfo(Path.Combine("Logs", name));
  23. logsDir.Create();
  24. var finfo = new FileInfo(Path.Combine(logsDir.FullName, $"{DateTime.Now:yyyy.MM.dd.HH.mm.ss}.log"));
  25. return finfo;
  26. }
  27. /// <summary>
  28. /// Creates a new printer with the given name.
  29. /// </summary>
  30. /// <param name="name">the name of the logger</param>
  31. public PluginLogFilePrinter(string name)
  32. {
  33. this.name = name;
  34. }
  35. /// <summary>
  36. /// Prints an entry to the associated file.
  37. /// </summary>
  38. /// <param name="level">the <see cref="Logger.Level"/> of the message</param>
  39. /// <param name="time">the <see cref="DateTime"/> the message was recorded at</param>
  40. /// <param name="logName">the name of the log that sent the message</param>
  41. /// <param name="message">the message to print</param>
  42. public override void Print(Logger.Level level, DateTime time, string logName, string message)
  43. {
  44. foreach (var line in removeControlCodes.Replace(message, "").Split(new[] { "\n", Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries))
  45. FileWriter.WriteLine(Logger.LogFormat, line, logName, time, level.ToString().ToUpper());
  46. }
  47. }
  48. }