1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-24 23:24:00 +02:00

updated logs delete trigger frequency and tests

This commit is contained in:
Gani Georgiev
2024-07-09 22:04:39 +03:00
parent b0f8c78022
commit 1f08b70283
2 changed files with 5 additions and 7 deletions

View File

@@ -1258,14 +1258,12 @@ func (app *BaseApp) initLogger() error {
// @todo replace with cron so that it doesn't rely on the logs write
//
// delete old logs (~ once 1 day)
// delete old logs (~ twice a day)
// ---
logsMaxDays := app.Settings().Logs.MaxDays
now := time.Now()
lastLogsDeletedAt := cast.ToTime(app.Store().Get("lastLogsDeletedAt"))
daysDiff := now.Sub(lastLogsDeletedAt).Hours() / 24
if daysDiff >= 1 {
deleteErr := app.LogsDao().DeleteOldLogs(now.AddDate(0, 0, -1*logsMaxDays))
if now.Sub(lastLogsDeletedAt).Hours() >= 6 {
deleteErr := app.LogsDao().DeleteOldLogs(now.AddDate(0, 0, -1*app.Settings().Logs.MaxDays))
if deleteErr == nil {
app.Store().Set("lastLogsDeletedAt", now)
} else {