chore: move alembic exception logging to debug (#4620)

move alembic exception logging to debug
This commit is contained in:
Jordan Frazier
2024-11-14 13:13:21 -08:00
committed by GitHub
parent 44b0531f6b
commit 7c048650e0

View File

@ -229,7 +229,7 @@ class DatabaseService(Service):
try:
session.exec(text("SELECT * FROM alembic_version"))
except Exception: # noqa: BLE001
logger.opt(exception=True).info("Alembic not initialized")
logger.debug("Alembic not initialized")
should_initialize_alembic = True
if should_initialize_alembic: