Skip to content

Commit 870804c

Browse files
authored
Fix loger. (#134)
1 parent a7b4d23 commit 870804c

File tree

1 file changed

+1
-1
lines changed
  • unstructured2graph/src/unstructured2graph

1 file changed

+1
-1
lines changed

unstructured2graph/src/unstructured2graph/loaders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ async def from_unstructured(
148148
)
149149
memgraph_node_props = []
150150
for chunk in document.chunks:
151-
logger.info(f"Chunk: {chunk.hash} - {chunk.text}")
151+
logger.debug(f"Chunk: {chunk.hash} - {chunk.text}")
152152
memgraph_node_props.append({"hash": chunk.hash, "text": chunk.text})
153153
create_nodes_from_list(memgraph, memgraph_node_props, "Chunk", 100)
154154

0 commit comments

Comments
 (0)