From 5ad401751033431537de8b585f68ab5969a5d50b Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Wed, 13 Jan 2021 07:12:53 -0600 Subject: [PATCH] try to cleanup some migration logging --- frigate/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/app.py b/frigate/app.py index f32b1779a..3cecf6489 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -115,6 +115,7 @@ class FrigateApp(): self.db = SqliteExtDatabase(self.config.database.path) # Run migrations + del(logging.getLogger('peewee_migrate').handlers[:]) router = Router(self.db) router.run()