database: remove legacy database warning
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
d6bdad3a9d
commit
f745c2ce17
|
@ -93,8 +93,8 @@ class MoonrakerDatabase:
|
||||||
except Exception:
|
except Exception:
|
||||||
same = False
|
same = False
|
||||||
if not same and legacy_db.exists():
|
if not same and legacy_db.exists():
|
||||||
self.server.add_warning(
|
logging.info(
|
||||||
f"Reverting to legacy database path: {db_path}"
|
f"Reverting to legacy database path: {legacy_db}"
|
||||||
)
|
)
|
||||||
db_path = legacy_db
|
db_path = legacy_db
|
||||||
if not db_path.is_dir():
|
if not db_path.is_dir():
|
||||||
|
|
Loading…
Reference in New Issue