From 3422de68797d44fdaad8b002a630e618860ed1a8 Mon Sep 17 00:00:00 2001 From: daiyujia Date: Tue, 2 Sep 2025 21:31:13 +0800 Subject: [PATCH] =?UTF-8?q?IssueNo:#ICW27N=20Description:=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E9=A2=84=E7=BD=AE=E5=BA=94=E7=94=A8=E6=8C=89=E9=9C=80?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E9=97=AE=E9=A2=98=20Sig:bundleManager=20Feat?= =?UTF-8?q?ure=20or=20Bugfix:Bugfix=20Binary=20Source:No?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: daiyujia Change-Id: I9af78fad4f0c0491e34a2f0c25f7444523fe3094 --- services/bundlemgr/src/pre_bundle_profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/bundlemgr/src/pre_bundle_profile.cpp b/services/bundlemgr/src/pre_bundle_profile.cpp index 0ffaa15073..b505fbe495 100644 --- a/services/bundlemgr/src/pre_bundle_profile.cpp +++ b/services/bundlemgr/src/pre_bundle_profile.cpp @@ -534,6 +534,7 @@ void PreBundleProfile::ProcessOnDemandList(std::set &scanAppInfos, { for (auto iter = scanAppInfos.begin(); iter != scanAppInfos.end();) { if (iter->onDemandInstall) { + APP_LOGI("%{public}s is onDemandInstall", iter->bundleDir.c_str()); PreScanInfo preScanInfo; preScanInfo.removable = iter->removable; preScanInfo.isDataPreloadHap = iter->isDataPreloadHap; @@ -543,7 +544,6 @@ void PreBundleProfile::ProcessOnDemandList(std::set &scanAppInfos, preScanInfo.onDemandInstall = iter->onDemandInstall; scanDemandInfos.insert(preScanInfo); iter = scanAppInfos.erase(iter); - APP_LOGI("%{public}s is onDemandInstall", iter->bundleDir.c_str()); } else { ++iter; } -- Gitee