Fix #3625: add the clear logs function.

This commit is contained in:
Ben
2024-04-03 09:21:13 +08:00
parent 578b7b0512
commit 4c08a527be
8 changed files with 104 additions and 49 deletions

View File

@ -8,6 +8,6 @@ namespace Oqtane.Repository
IEnumerable<Log> GetLogs(int siteId, string level, string function, int rows);
Log GetLog(int logId);
void AddLog(Log log);
int DeleteLogs(int siteId, int age);
int DeleteLogs(int siteId, int age, bool includeErrors = false);
}
}