From 202f7befaf653926d40c4e93fa667d4a896f5a41 Mon Sep 17 00:00:00 2001 From: yangdx Date: Wed, 19 Mar 2025 14:08:28 +0800 Subject: [PATCH] Remove redundant debug log for graph labels fetching --- lightrag_webui/src/components/graph/GraphLabels.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/lightrag_webui/src/components/graph/GraphLabels.tsx b/lightrag_webui/src/components/graph/GraphLabels.tsx index 606a2d60..b23734fb 100644 --- a/lightrag_webui/src/components/graph/GraphLabels.tsx +++ b/lightrag_webui/src/components/graph/GraphLabels.tsx @@ -29,8 +29,6 @@ const GraphLabels = () => { // Set global flag to indicate we've attempted to fetch in this session useGraphStore.getState().setLabelsFetchAttempted(true) - console.log('Fetching graph labels (once per session)...') - useGraphStore.getState().fetchAllDatabaseLabels() .then(() => { labelsLoadedRef.current = true