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
commit 7c048650e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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: