Replace print statement with logger.debug for file_path.
This commit is contained in:
parent
3279948dcd
commit
783e7867cf
1 changed files with 2 additions and 1 deletions
|
|
@ -246,7 +246,8 @@ async def _merge_nodes_then_upsert(
|
||||||
file_path = GRAPH_FIELD_SEP.join(
|
file_path = GRAPH_FIELD_SEP.join(
|
||||||
set([dp["metadata"]["file_path"] for dp in nodes_data] + already_file_paths)
|
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(
|
description = await _handle_entity_relation_summary(
|
||||||
entity_name, description, global_config
|
entity_name, description, global_config
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue