Filepaths
This commit is contained in:
parent
9d55601a27
commit
99ed9af50c
@ -7,7 +7,7 @@
|
|||||||
<Authors>Glax</Authors>
|
<Authors>Glax</Authors>
|
||||||
<RepositoryUrl>https://git.bernloehr.eu/glax/GlaxLogger</RepositoryUrl>
|
<RepositoryUrl>https://git.bernloehr.eu/glax/GlaxLogger</RepositoryUrl>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
<Version>1.0.7</Version>
|
<Version>1.0.7.2</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -6,7 +6,8 @@ namespace GlaxLogger;
|
|||||||
public class Logger : ILogger, IDisposable, IAsyncDisposable
|
public class Logger : ILogger, IDisposable, IAsyncDisposable
|
||||||
{
|
{
|
||||||
private LogLevel _filterLevel;
|
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 FileStream _allMessageLogfile, _filteredLogfile;
|
||||||
private readonly ConsoleColor _defaultForegroundColor = Console.ForegroundColor;
|
private readonly ConsoleColor _defaultForegroundColor = Console.ForegroundColor;
|
||||||
private readonly ConsoleColor _defaultBackgroundColor = Console.BackgroundColor;
|
private readonly ConsoleColor _defaultBackgroundColor = Console.BackgroundColor;
|
||||||
|
Reference in New Issue
Block a user