2
0
mirror of synced 2025-01-09 16:15:51 +00:00

16 lines
302 B
C#
Raw Normal View History

2023-09-21 10:33:09 +02:00
namespace Logging
{
public class ConsoleLog : BaseLog
{
protected override string GetFullName()
{
return "CONSOLE";
}
public override void Log(string message)
{
2024-08-07 11:18:40 +02:00
Console.WriteLine(ApplyReplacements(message));
2023-09-21 10:33:09 +02:00
}
}
}