Fixed auto value string enum conversion

This commit is contained in:
Felix Weiß
2022-08-04 11:47:37 +02:00
parent 6c7c368b55
commit 772f8b89a4
3 changed files with 10 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ class Program {
Task.Factory.StartNew(async () => {
//attaching the logger
Logger.LogLevel = LogLevel.Critical;
Logger.LogLevel = LogLevel.Verbose;
Logger.OnNewLogMessage((date, msg) => {
Console.WriteLine($"{date.ToString("HH:mm:ss")} {msg}");
});