12 lines
247 B
C#
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();
|
|
}
|