From 590547e40701ea85a56176214e8a6244bffec350 Mon Sep 17 00:00:00 2001 From: Glax Date: Tue, 5 Mar 2024 02:55:10 +0100 Subject: [PATCH] Add Logline to print current logfilePath. --- Logging/Logger.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Logging/Logger.cs b/Logging/Logger.cs index 6ab86b0..66fd8e5 100644 --- a/Logging/Logger.cs +++ b/Logging/Logger.cs @@ -43,6 +43,7 @@ public class Logger : TextWriter throw new ArgumentException($"stdOut can not be null for LoggerType {LoggerType.ConsoleLogger}"); } _memoryLogger = new MemoryLogger(encoding); + WriteLine(GetType().ToString(), $"Logfile: {logFilePath}"); } public void WriteLine(string caller, string? value)