From 9cdddf90fd9efdf53e555fd4e5c282ed279aca15 Mon Sep 17 00:00:00 2001 From: yangdx Date: Fri, 4 Apr 2025 04:52:37 +0800 Subject: [PATCH] Remove debug output --- lightrag/kg/postgres_impl.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lightrag/kg/postgres_impl.py b/lightrag/kg/postgres_impl.py index 139b72b9..29bf2e45 100644 --- a/lightrag/kg/postgres_impl.py +++ b/lightrag/kg/postgres_impl.py @@ -1242,9 +1242,6 @@ class PGGraphStorage(BaseGraphStorage): record = (await self._query(query))[0] if record: edge_count = int(record["total_edge_count"]) - - print(f"edge_count: {edge_count} / {node_id}") - return edge_count async def edge_degree(self, src_id: str, tgt_id: str) -> int: