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]);