Add files via upload

Changed log interval time 

Signed-off-by: wpa-2 <9049886+wpa-2@users.noreply.github.com>
This commit is contained in:
wpa-2
2025-03-07 14:32:06 +00:00
committed by GitHub
parent d91fe8e17e
commit c98745cd1c

View File

@ -86,8 +86,8 @@ class AutoBackup(plugins.Plugin):
if not self.is_backup_due():
now = time.time()
# Log "backup not due" only once every 60 seconds.
if now - self.last_not_due_logged > 60:
# Log "backup not due" only once every 600 seconds.
if now - self.last_not_due_logged > 600:
logging.info("AUTO-BACKUP: Backup not due yet based on the interval.")
self.last_not_due_logged = now
return