Files
SPT-Server-Build/SPTarkov.Server/Logger/ConsoleFormatter.cs
T
2025-03-07 13:16:43 +00:00

20 lines
412 B
C#

namespace SPTarkov.Server.Logger;
public class ConsoleFormatter : AbstractFormatter
{
public static ConsoleFormatter Default
{
get;
} = new();
protected override string ProcessText(string text)
{
return text;
}
protected override string GetFormattedText(string timestamp, string logLevel, string sourceContext, string message)
{
return message;
}
}