From b48d5e62e3dbe3e1e0292b93b84f4a70b8a3d530 Mon Sep 17 00:00:00 2001 From: yangdx Date: Thu, 3 Apr 2025 15:39:52 +0800 Subject: [PATCH] Remove debug print --- lightrag/kg/postgres_impl.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lightrag/kg/postgres_impl.py b/lightrag/kg/postgres_impl.py index f498e248..4b116d96 100644 --- a/lightrag/kg/postgres_impl.py +++ b/lightrag/kg/postgres_impl.py @@ -1201,7 +1201,6 @@ class PGGraphStorage(BaseGraphStorage): $$) AS (n agtype)""" % (self.graph_name, label) record = await self._query(query) if record: - print(f"Record: {record}") node = record[0] node_dict = node["n"] @@ -1250,7 +1249,6 @@ class PGGraphStorage(BaseGraphStorage): ) record = await self._query(query) if record and record[0] and record[0]["edge_properties"]: - print(f"Record: {record}") result = record[0]["edge_properties"] return result