Lots of SzGui work
This commit is contained in:
23
SzGui/SzLogger.cs
Normal file
23
SzGui/SzLogger.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user