Created Logger

This commit is contained in:
2023-05-20 21:47:54 +02:00
parent 497ec74b9a
commit 4d3861d31b
8 changed files with 210 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using System.Text;
namespace Logging;
public class FormattedConsoleLogger : LoggerBase
{
public FormattedConsoleLogger(TextWriter? stdOut, Encoding? encoding = null) : base(stdOut, encoding)
{
}
protected override void Write(LogMessage message)
{
//Nothing to do yet
}
}