From 67b3c28d33757e5856986e422c9095eea55bc44a Mon Sep 17 00:00:00 2001 From: yuliang_guo Date: Fri, 30 Jan 2026 18:28:58 +0800 Subject: [PATCH] =?UTF-8?q?debug:=20=E6=B7=BB=E5=8A=A0=E6=88=90=E9=95=BF?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E8=BF=94=E5=9B=9E=E6=95=B0=E6=8D=AE=E6=97=A5?= =?UTF-8?q?=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/services/growth_path_service.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/app/services/growth_path_service.py b/backend/app/services/growth_path_service.py index 4a4e5dc..f0789f4 100644 --- a/backend/app/services/growth_path_service.py +++ b/backend/app/services/growth_path_service.py @@ -507,6 +507,10 @@ class GrowthPathService: completed_count = len(completed_node_ids) total_progress = (completed_count / total_nodes * 100) if total_nodes > 0 else 0 + logger.info(f"成长路径 {growth_path.id} 返回 {len(stages)} 个阶段, {total_nodes} 个节点") + for s in stages: + logger.info(f" 阶段 '{s.name}': {len(s.nodes)} 个节点") + return TraineeGrowthPathResponse( id=growth_path.id, name=growth_path.name,