20 lines
412 B
C#
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;
|
|
}
|
|
}
|