Playing with tests

This commit is contained in:
2023-11-20 13:43:43 +02:00
parent 1f0e6516fd
commit 79ecff971b
5 changed files with 88 additions and 2 deletions

View File

@@ -10,8 +10,8 @@ public sealed class Logger : ILogger
{
public bool IsEnabled { get; init; }
public bool OutputToFile { get; init; }
public LogType LowestLogLevel { get; set; }
private LogType LowestLogLevel { get; }
private bool UseShortVersion { get; }
public Logger(bool useShortVersion, bool outputToFile, LogType lowestLogLevel = LogType.INFO)