diff --git a/services/bundlemgr/src/bundle_profile.cpp b/services/bundlemgr/src/bundle_profile.cpp index 36ac12c35fc5d909085beda32b01dc3473dfdb4e..754c320c6fc212f5188f8309627d7a8575973f23 100644 --- a/services/bundlemgr/src/bundle_profile.cpp +++ b/services/bundlemgr/src/bundle_profile.cpp @@ -2645,8 +2645,7 @@ ErrCode BundleProfile::TransformTo( return ERR_APPEXECFWK_PARSE_PROFILE_PROP_CHECK_ERROR; } if (!ParserNativeSo(configJson, bundleExtractor, innerBundleInfo)) { - APP_LOGE("Parser native so failed"); - return ERR_APPEXECFWK_PARSE_NATIVE_SO_FAILED; + APP_LOGW("Parser native so failed"); } return ERR_OK; } diff --git a/services/bundlemgr/src/module_profile.cpp b/services/bundlemgr/src/module_profile.cpp index 0d2ac5a7fd0be290c3b1828dbca8273d306f230a..54bfa3bc70317eea36e3228c5bed8d0146efc6ab 100644 --- a/services/bundlemgr/src/module_profile.cpp +++ b/services/bundlemgr/src/module_profile.cpp @@ -2724,8 +2724,7 @@ ErrCode ModuleProfile::TransformTo( return ERR_APPEXECFWK_PARSE_PROFILE_PROP_CHECK_ERROR; } if (!ParserNativeSo(moduleJson, bundleExtractor, innerBundleInfo)) { - APP_LOGE("Parser native so failed"); - return ERR_APPEXECFWK_PARSE_NATIVE_SO_FAILED; + APP_LOGW("Parser native so failed"); } if (!ParserArkNativeFilePath(moduleJson, bundleExtractor, innerBundleInfo)) { APP_LOGE("Parser ark native file failed"); diff --git a/services/bundlemgr/src/quick_fix/patch_profile.cpp b/services/bundlemgr/src/quick_fix/patch_profile.cpp index 55c61250f3cbcbe7bc7f9d480552cf6a02ac8ba1..afa76c8dc4f4a7ba06d93d9fe66a081ba93fc450 100644 --- a/services/bundlemgr/src/quick_fix/patch_profile.cpp +++ b/services/bundlemgr/src/quick_fix/patch_profile.cpp @@ -340,8 +340,7 @@ ErrCode PatchProfile::TransformTo( // hot reload does not process so files if ((appQuickFix.deployingAppqfInfo.type == QuickFixType::PATCH) && (!ParseNativeSo(patchExtractor, appQuickFix.deployingAppqfInfo))) { - LOG_E(BMS_TAG_DEFAULT, "ParseNativeSo failed"); - return ERR_APPEXECFWK_PARSE_NATIVE_SO_FAILED; + LOG_W(BMS_TAG_DEFAULT, "ParseNativeSo failed"); } return ERR_OK; }