Limited the number of logs kept in memory

This commit is contained in:
2025-05-06 14:06:54 +03:00
parent 3e4709148f
commit e6976a5a74
3 changed files with 28 additions and 29 deletions

View File

@@ -6,7 +6,6 @@ public interface ILogger
void Log(string message);
void Log(string message, LogType logType);
void Log(string message, LogType logType, string format);
void Log(string message, object sender);
void Log(string message, object sender, LogType type);
void LogException(Exception exception, object sender, bool logFullStack = false);