23 lines
366 B
C#
23 lines
366 B
C#
using SzCore;
|
|
|
|
namespace SzGui;
|
|
|
|
public class SzLogger : 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)
|
|
{
|
|
}
|
|
} |