10 lines
247 B
C#
10 lines
247 B
C#
namespace SzCore;
|
|
|
|
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);
|
|
} |