Rename SzLib to SzCore
This commit is contained in:
10
SzCore/ISzLogger.cs
Normal file
10
SzCore/ISzLogger.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user