using IPA.Utilities;
using System;
using System.IO;
namespace IPA.Logging.Printers
{
///
/// A printer for all messages to a unified log location.
///
public class GlobalLogFilePrinter : GZFilePrinter
{
///
/// Provides a filter for this specific printer.
///
/// the filter level for this printer
public override Logger.LogLevel Filter { get; set; } = Logger.LogLevel.All;
///
/// Prints an entry to the associated file.
///
/// the of the message
/// the the message was recorded at
/// the name of the log that sent the message
/// the message to print
public override void Print(Logger.Level level, DateTime time, string logName, string message)
{
foreach (var line in removeControlCodes.Replace(message, "").Split(new[] { "\n", Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries))
FileWriter.WriteLine(Logger.LogFormat, line, logName, time, level.ToString().ToUpper());
}
///
/// Gets the for the target file.
///
/// the target file to write to
protected override FileInfo GetFileInfo()
{
var logsDir = new DirectoryInfo("Logs");
logsDir.Create();
var finfo = new FileInfo(Path.Combine(logsDir.FullName, $"{Utils.CurrentTime():yyyy.MM.dd.HH.mm.ss}.log"));
return finfo;
}
}
}