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', '调整图表大小'); } };