namespace SzCore; 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); }