From 64a91f552f26ee134461e24c590350fd75328053 Mon Sep 17 00:00:00 2001 From: leccelecce <24962424+leccelecce@users.noreply.github.com> Date: Fri, 26 Jan 2024 13:18:29 +0000 Subject: [PATCH] Add info logging at startup if vacuuming database (#9432) --- frigate/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/app.py b/frigate/app.py index 1535eeaf6..4a3cf48d6 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -271,6 +271,7 @@ class FrigateApp: def init_database(self) -> None: def vacuum_db(db: SqliteExtDatabase) -> None: + logger.info("Running database vacuum") db.execute_sql("VACUUM;") try: