diff --git a/GlaxLogger/GlaxLogger.csproj b/GlaxLogger/GlaxLogger.csproj
index 099eaae..afb96b4 100644
--- a/GlaxLogger/GlaxLogger.csproj
+++ b/GlaxLogger/GlaxLogger.csproj
@@ -7,7 +7,7 @@
Glax
https://git.bernloehr.eu/glax/GlaxLogger
git
- 1.0.7
+ 1.0.7.2
diff --git a/GlaxLogger/Logger.cs b/GlaxLogger/Logger.cs
index a0f8cb8..ffc64b9 100644
--- a/GlaxLogger/Logger.cs
+++ b/GlaxLogger/Logger.cs
@@ -6,7 +6,8 @@ namespace GlaxLogger;
public class Logger : ILogger, IDisposable, IAsyncDisposable
{
private LogLevel _filterLevel;
- public readonly string LogFilePath, FilteredLogFilePath;
+ public string LogFilePath { get; init; }
+ public string FilteredLogFilePath { get; init; }
private readonly FileStream _allMessageLogfile, _filteredLogfile;
private readonly ConsoleColor _defaultForegroundColor = Console.ForegroundColor;
private readonly ConsoleColor _defaultBackgroundColor = Console.BackgroundColor;