From d4b444f49bff106efcfbf5e1f7a72693f6ea82d2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Feb 2026 09:43:18 +0000 Subject: [PATCH] Fix bad log --- backend/condition/persistence/condition_postgres.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/condition/persistence/condition_postgres.py b/backend/condition/persistence/condition_postgres.py index 9b9ce2e0..bb6ada44 100644 --- a/backend/condition/persistence/condition_postgres.py +++ b/backend/condition/persistence/condition_postgres.py @@ -31,7 +31,7 @@ class ConditionPostgres: ) with db_session() as session: - logger.info("Successfully made connection to database:", session) + logger.info("[ConditionPostgres] Successfully made connection to database") # for start in range(0, total, batch_size): # end = min(start + batch_size, total) # batch = survey_models[start:end]