diff --git a/module_manager/native_module_manager.cpp b/module_manager/native_module_manager.cpp index d8884f50f028fe1722ec9d1f2dec394b4d6760f1..f1c2955bbef12f7017ee8aab4df1704ed0f4d72c 100644 --- a/module_manager/native_module_manager.cpp +++ b/module_manager/native_module_manager.cpp @@ -589,7 +589,7 @@ NativeModule* NativeModuleManager::LoadNativeModule(const char* moduleName, cons if (moduleLoadChecker_ && !moduleLoadChecker_->DiskCheckOnly() && !moduleLoadChecker_->CheckModuleLoadable(moduleName, apiAllowListChecker, isAppModule)) { errInfo = "module " + std::string(moduleName) + " is in blocklist, loading prohibited"; - HILOG_ERROR("%{public}s", errInfo.c_str()); + HILOG_WARN("%{public}s", errInfo.c_str()); return nullptr; } std::string prefixTmp; diff --git a/native_engine/impl/ark/ark_idle_monitor.cpp b/native_engine/impl/ark/ark_idle_monitor.cpp index acd3590077634f6e0e22a0354b96c6c6a8b8dffa..ed714e26aebc495ca687fb8b5ee64118760a4b1f 100644 --- a/native_engine/impl/ark/ark_idle_monitor.cpp +++ b/native_engine/impl/ark/ark_idle_monitor.cpp @@ -282,7 +282,6 @@ void ArkIdleMonitor::SetStartTimerCallback() JSNApi::SetStartIdleMonitorCallback([this]() { // prevents duplicate invok to avoid deadlocks if (!started_) { - HILOG_INFO("Running idle monitor call back task"); this->IntervalMonitor(); started_ = true; } @@ -557,7 +556,6 @@ void ArkIdleMonitor::StopIdleMonitorTimerTaskAndPostSleepTask() { #if defined(ENABLE_FFRT) std::lock_guard lock(timerMutex_); - HILOG_INFO("StopIdleMonitorTimerTask get timerMutex_"); if (currentTimerHandler_ != -1) { ffrt_timer_stop(ffrt_qos_user_initiated, currentTimerHandler_); currentTimerHandler_ = -1;