diff --git a/frameworks/native/ability/native/js_service_extension.cpp b/frameworks/native/ability/native/js_service_extension.cpp index a02c8f513f4488a59f50be463ed2db1700eaa549..71382f12411cdba0cb5592463f2717748071617a 100644 --- a/frameworks/native/ability/native/js_service_extension.cpp +++ b/frameworks/native/ability/native/js_service_extension.cpp @@ -254,7 +254,7 @@ void JsServiceExtension::SystemAbilityStatusChangeListener::OnAddSystemAbility(i { TAG_LOGD(AAFwkTag::SERVICE_EXT, "systemAbilityId: %{public}d add", systemAbilityId); if (systemAbilityId == WINDOW_MANAGER_SERVICE_ID) { - TAG_LOGI(AAFwkTag::SERVICE_EXT, "RegisterDisplayInfoChangedListener"); + TAG_LOGD(AAFwkTag::SERVICE_EXT, "RegisterDisplayInfoChangedListener"); Rosen::WindowManager::GetInstance().RegisterDisplayInfoChangedListener(token_, tmpDisplayListener_); } } @@ -303,7 +303,7 @@ void JsServiceExtension::OnStart(const AAFwk::Want &want) { HITRACE_METER_NAME(HITRACE_TAG_ABILITY_MANAGER, __PRETTY_FUNCTION__); Extension::OnStart(want); - TAG_LOGI(AAFwkTag::SERVICE_EXT, "call"); + TAG_LOGD(AAFwkTag::SERVICE_EXT, "call"); auto context = GetContext(); if (context != nullptr) { diff --git a/service_router_framework/services/srms/include/bundle_info_resolve_util.h b/service_router_framework/services/srms/include/bundle_info_resolve_util.h index 4a67e82feb114e37dbb7f2f56700d228e5f3276f..187985c4b1756c1f34f8cfda77e38502a87553cd 100755 --- a/service_router_framework/services/srms/include/bundle_info_resolve_util.h +++ b/service_router_framework/services/srms/include/bundle_info_resolve_util.h @@ -99,7 +99,6 @@ private: static void ConvertAbilityToPurposes(const AbilityInfo &abilityInfo, std::vector &purposeInfos, const AppInfo &appInfo) { - TAG_LOGI(AAFwkTag::SER_ROUTER, "Called"); std::string supportPurpose = GetAbilityMetadataValue(abilityInfo, SrConstants::METADATA_SUPPORT_PURPOSE_KEY); if (supportPurpose.empty()) { return; @@ -124,7 +123,6 @@ private: static void ConvertExtAbilityToPurposes(const ExtensionAbilityInfo &extAbilityInfo, std::vector &purposeInfos, const AppInfo &appInfo) { - TAG_LOGI(AAFwkTag::SER_ROUTER, "Called"); if (extAbilityInfo.type != ExtensionAbilityType::FORM && extAbilityInfo.type != ExtensionAbilityType::UI) { return; } diff --git a/services/abilitymgr/src/ability_manager_client.cpp b/services/abilitymgr/src/ability_manager_client.cpp index 9e6d817ab10031b07725a5cc3a00a58e3423a4fc..c37651265db6f8ac391d195a2276ccc5b4f23955 100644 --- a/services/abilitymgr/src/ability_manager_client.cpp +++ b/services/abilitymgr/src/ability_manager_client.cpp @@ -648,7 +648,7 @@ ErrCode AbilityManagerClient::DisconnectAbility(sptr connect HITRACE_METER_NAME(HITRACE_TAG_ABILITY_MANAGER, __PRETTY_FUNCTION__); auto abms = GetAbilityManager(); CHECK_POINTER_RETURN_NOT_CONNECTED(abms); - TAG_LOGI(AAFwkTag::SERVICE_EXT, "DisconnectAbility call"); + TAG_LOGI(AAFwkTag::SERVICE_EXT, "DisconnectAbility"); return abms->DisconnectAbility(connect); }