From 46b5cc6475c8e1eaba674969aa6a7e84f7192f6b Mon Sep 17 00:00:00 2001 From: aashipandya <156318202+aashipandya@users.noreply.github.com> Date: Tue, 7 Jan 2025 07:03:06 +0000 Subject: [PATCH] correct log --- backend/src/post_processing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/post_processing.py b/backend/src/post_processing.py index efc70b2b8..cc2596c8b 100644 --- a/backend/src/post_processing.py +++ b/backend/src/post_processing.py @@ -225,8 +225,8 @@ def graph_cleanup(graph): if new_label != old_label: relation_match[old_label]=new_label - logging.info("updated node labels : ",node_match) - logging.info("updated relationship labels : ",relation_match) + logging.info(f"updated node labels : {node_match}") + logging.info(f"updated relationship labels : {relation_match}") # Update node labels in graph for old_label, new_label in node_match.items():