From b48652910e1ed3453e09f7df2d48001e53ca33d9 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Sat, 16 May 2026 14:44:38 +0200 Subject: [PATCH] [fix:] format errors --- Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Logger.cs b/Logger.cs index 321e5f2..94831a6 100644 --- a/Logger.cs +++ b/Logger.cs @@ -19,7 +19,7 @@ public static class Logger if(!File.Exists(log_path)) File.Create(log_path).Close(); - string line = $"[{DateTime.Now:dd.MM.yyyy - T}]: ({logType.ToString()}) {text})"; + string line = $"[{DateTime.Now:dd.MM.yyyy - hh:mm:ss}]: ({logType.ToString()}) {text}"; Console.WriteLine(line); File.AppendAllLines(log_path, [line]);