WriteToLogFile now implemented

This commit is contained in:
Alex
2025-02-09 17:46:18 +00:00
parent 955e44eb62
commit c67c807dd3
8 changed files with 37 additions and 10 deletions
+1 -1
View File
@@ -14,6 +14,6 @@ public interface ISptLogger<T>
void Info(string data, Exception? ex = null);
void Debug(string data, Exception? ex = null);
void Critical(string data, Exception? ex = null);
void WriteToLogFile(string body);
void WriteToLogFile(string body, LogLevel level = LogLevel.Info);
bool IsLogEnabled(LogLevel level);
}