Files
sessionzero-cs/SzLib/ISzLogger.cs
2026-01-23 23:39:57 -06:00

10 lines
246 B
C#

namespace SzLib;
public interface ISzLogger
{
public bool LogToFile { get; set; }
public string LogFilePath { get; set; }
public void Log(string text);
public void LogError(string text);
public void LogWarning(string text);
}