From f745c2ce171b58fdf59096de11a95971d3f843ad Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Tue, 18 Oct 2022 14:13:25 -0400 Subject: [PATCH] database: remove legacy database warning Signed-off-by: Eric Callahan --- moonraker/components/database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/moonraker/components/database.py b/moonraker/components/database.py index e8a32e5..5f8abe6 100644 --- a/moonraker/components/database.py +++ b/moonraker/components/database.py @@ -93,8 +93,8 @@ class MoonrakerDatabase: except Exception: same = False if not same and legacy_db.exists(): - self.server.add_warning( - f"Reverting to legacy database path: {db_path}" + logging.info( + f"Reverting to legacy database path: {legacy_db}" ) db_path = legacy_db if not db_path.is_dir():