From fe22d48006f4fd061ea9b0ea4425b1eef5b1d9e6 Mon Sep 17 00:00:00 2001 From: zdl <3489966805@qq.com> Date: Tue, 25 Nov 2025 15:42:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8Dloagger=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/StockChart/StockChartKLineModal.tsx | 1 - src/components/StockChart/hooks/useKLineChart.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/components/StockChart/StockChartKLineModal.tsx b/src/components/StockChart/StockChartKLineModal.tsx index cac2f3bf..ccd3f209 100644 --- a/src/components/StockChart/StockChartKLineModal.tsx +++ b/src/components/StockChart/StockChartKLineModal.tsx @@ -143,7 +143,6 @@ const StockChartKLineModal: React.FC = ({ */ const handleRefresh = useCallback(() => { loadData(); - logger.debug('StockChartKLineModal', 'handleRefresh', '刷新数据'); }, [loadData]); // ==================== 计算属性 ==================== diff --git a/src/components/StockChart/hooks/useKLineChart.ts b/src/components/StockChart/hooks/useKLineChart.ts index b161e545..5633c697 100644 --- a/src/components/StockChart/hooks/useKLineChart.ts +++ b/src/components/StockChart/hooks/useKLineChart.ts @@ -215,7 +215,6 @@ export const useKLineChart = ( const handleResize = () => { if (chartInstanceRef.current) { chartInstanceRef.current.resize(); - logger.debug('useKLineChart', 'resize', '调整图表大小'); } };