yangdx commited on
Commit
1473856
·
1 Parent(s): 6600311

Replace print statement with logger.debug for file_path.

Browse files
Files changed (1) hide show
  1. lightrag/operate.py +2 -1
lightrag/operate.py CHANGED
@@ -246,7 +246,8 @@ async def _merge_nodes_then_upsert(
246
  file_path = GRAPH_FIELD_SEP.join(
247
  set([dp["metadata"]["file_path"] for dp in nodes_data] + already_file_paths)
248
  )
249
- print(f"file_path: {file_path}")
 
250
  description = await _handle_entity_relation_summary(
251
  entity_name, description, global_config
252
  )
 
246
  file_path = GRAPH_FIELD_SEP.join(
247
  set([dp["metadata"]["file_path"] for dp in nodes_data] + already_file_paths)
248
  )
249
+
250
+ logger.debug(f"file_path: {file_path}")
251
  description = await _handle_entity_relation_summary(
252
  entity_name, description, global_config
253
  )