Add Logline to print current logfilePath.

This commit is contained in:
Glax 2024-03-05 02:55:10 +01:00
parent 2ad04c5c46
commit 590547e407

View File

@ -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)