Files
SPT-Server-Build/Server/Logger/ConsoleFormatter.cs
T

17 lines
387 B
C#

namespace 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;
}
}