Merge branch 'main' into develop

# Conflicts:
#	Server/Logger/WebApplicationLogger.cs
This commit is contained in:
Alex
2025-02-09 18:04:46 +00:00
7 changed files with 38 additions and 9 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);
}