11 lines
292 B
C#
11 lines
292 B
C#
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);
|
|
} |