Skip to content

Commit

Permalink
Add Logline to print current logfilePath.
Browse files Browse the repository at this point in the history
  • Loading branch information
C9Glax committed Mar 5, 2024
1 parent 2ad04c5 commit 590547e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Logging/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public Logger(LoggerType[] enabledLoggers, TextWriter? stdOut, Encoding? encodin
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)
Expand Down

0 comments on commit 590547e

Please sign in to comment.