From c72f37198af1e75f33dd584b1b77f4e2b2710220 Mon Sep 17 00:00:00 2001 From: liwenzhen Date: Fri, 12 Sep 2025 15:38:32 +0800 Subject: [PATCH] change viewv2 log to ComponentV2 Signed-off-by: liwenzhen --- .../declarative_frontend/state_mgmt/src/lib/v2/v2_view.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/v2/v2_view.ts b/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/v2/v2_view.ts index 9f0741c35bf..7d55b1cc7b5 100644 --- a/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/v2/v2_view.ts +++ b/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/v2/v2_view.ts @@ -65,7 +65,7 @@ abstract class ViewV2 extends PUV2ViewBase implements IView { stateMgmtConsole.debug(`Both V1 and V2 components are involved. Disabling Parent-Child optimization`) ObserveV2.getObserve().isParentChildOptimizable_ = false; } - stateMgmtConsole.debug(`ViewV2 constructor: Creating @Component '${this.constructor.name}' from parent '${parent?.constructor.name}'`); + stateMgmtConsole.debug(`ViewV2 constructor: Creating @ComponentV2 '${this.constructor.name}' from parent '${parent?.constructor.name}'`); } /** -- Gitee