Development Merge 2025.10.18 #4

Merged
Syntriax merged 91 commits from development into main 2025-10-18 10:03:13 +02:00
Showing only changes of commit 3912706d27 - Show all commits

View File

@@ -14,6 +14,9 @@ public class FileLogger : LoggerBase
public FileLogger(string filePath) public FileLogger(string filePath)
{ {
if (!filePath.EndsWith(".log"))
filePath += ".log";
FilePath = filePath; FilePath = filePath;
bool isRelativePath = Path.GetFullPath(filePath).CompareTo(filePath) != 0; bool isRelativePath = Path.GetFullPath(filePath).CompareTo(filePath) != 0;