From 7c048650e00208882fa58f2dee7e32c7c7883de5 Mon Sep 17 00:00:00 2001 From: Jordan Frazier <122494242+jordanrfrazier@users.noreply.github.com> Date: Thu, 14 Nov 2024 13:13:21 -0800 Subject: [PATCH] chore: move alembic exception logging to debug (#4620) move alembic exception logging to debug --- src/backend/base/langflow/services/database/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/base/langflow/services/database/service.py b/src/backend/base/langflow/services/database/service.py index 18e5bad93..510703897 100644 --- a/src/backend/base/langflow/services/database/service.py +++ b/src/backend/base/langflow/services/database/service.py @@ -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: