Files
SPT-Server-Build/Server/Logger/ConsoleFormatter.cs
T
2025-01-15 15:06:54 +00:00

17 lines
387 B
C#

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