From 783e7867cfc6e28f0cdd34fe1b5f6353327a2bf1 Mon Sep 17 00:00:00 2001 From: yangdx Date: Tue, 18 Mar 2025 20:39:38 +0800 Subject: [PATCH] Replace print statement with logger.debug for file_path. --- lightrag/operate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lightrag/operate.py b/lightrag/operate.py index ec450a1d..a937ae60 100644 --- a/lightrag/operate.py +++ b/lightrag/operate.py @@ -246,7 +246,8 @@ async def _merge_nodes_then_upsert( file_path = GRAPH_FIELD_SEP.join( set([dp["metadata"]["file_path"] for dp in nodes_data] + already_file_paths) ) - print(f"file_path: {file_path}") + + logger.debug(f"file_path: {file_path}") description = await _handle_entity_relation_summary( entity_name, description, global_config )