From ef9951a52adeda6565232431879f5503874c062a Mon Sep 17 00:00:00 2001 From: zcdqs Date: Wed, 27 Apr 2022 08:40:29 +0800 Subject: [PATCH] add components count to dump frontend Signed-off-by: zcdqs Change-Id: Ic1147021e098fdf3ba5ebe082aa972ead87c99c6 --- frameworks/core/pipeline/pipeline_context.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/frameworks/core/pipeline/pipeline_context.cpp b/frameworks/core/pipeline/pipeline_context.cpp index 3dfaaf0d..a85d0daa 100644 --- a/frameworks/core/pipeline/pipeline_context.cpp +++ b/frameworks/core/pipeline/pipeline_context.cpp @@ -3272,6 +3272,7 @@ void PipelineContext::DumpFrontend() const { auto frontend = weakFrontend_.Upgrade(); if (frontend) { + DumpLog::GetInstance().AddDesc("Components: " + std::to_string(composedElementMap_.size())); frontend->DumpFrontend(); } }