Added API: GET LogMessages and LogFile

resolves #10
This commit is contained in:
2023-09-05 20:02:12 +02:00
parent ae1184320f
commit c601541249
4 changed files with 29 additions and 2 deletions

View File

@ -4,7 +4,7 @@ namespace Logging;
public class FileLogger : LoggerBase
{
private string logFilePath { get; }
internal string logFilePath { get; }
private const int MaxNumberOfLogFiles = 5;
public FileLogger(string logFilePath, Encoding? encoding = null) : base (encoding)