Remove debug output

This commit is contained in:
yangdx
2025-04-04 04:52:37 +08:00
parent c3934ccccb
commit 9cdddf90fd

View File

@@ -1242,9 +1242,6 @@ class PGGraphStorage(BaseGraphStorage):
record = (await self._query(query))[0] record = (await self._query(query))[0]
if record: if record:
edge_count = int(record["total_edge_count"]) edge_count = int(record["total_edge_count"])
print(f"edge_count: {edge_count} / {node_id}")
return edge_count return edge_count
async def edge_degree(self, src_id: str, tgt_id: str) -> int: async def edge_degree(self, src_id: str, tgt_id: str) -> int: