Cleaning up SzCli logger implementation a bit

This commit is contained in:
2026-01-23 23:45:54 -06:00
parent 7f232254b1
commit 74ee8eefc3
2 changed files with 11 additions and 3 deletions

View File

@@ -4,6 +4,7 @@ public interface ISzLogger
{
public bool LogToFile { get; set; }
public string LogFilePath { get; set; }
public int LogFileMaxLines { get; set; }
public void Log(string text);
public void LogError(string text);
public void LogWarning(string text);