Files
SPT-Server-Build/Server/Logger/ConsoleFormatter.cs
T
2025-01-12 21:44:30 +00:00

12 lines
247 B
C#

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