diff --git a/src/backend/langflow/api/v1/chat.py b/src/backend/langflow/api/v1/chat.py index c25c4bde2..6fdfb8897 100644 --- a/src/backend/langflow/api/v1/chat.py +++ b/src/backend/langflow/api/v1/chat.py @@ -239,8 +239,7 @@ def try_running_celery_task(vertex): task = build_vertex.delay(vertex) vertex.task_id = task.id except Exception as exc: - logger.exception(exc) - logger.error("Error running task in celery, running locally") + logger.debug(f"Error running task in celery: {exc}") vertex.task_id = None vertex.build() return vertex