diff --git a/js_concurrent_module/taskpool/task.cpp b/js_concurrent_module/taskpool/task.cpp index 333040f10137f0c4be14ecc61e8426b409d920e3..872fbd3baa77b642a2aaac7351b5dd41573898e3 100644 --- a/js_concurrent_module/taskpool/task.cpp +++ b/js_concurrent_module/taskpool/task.cpp @@ -1999,7 +1999,7 @@ void Task::TriggerEnqueueCallback() if (info != nullptr) { ExecuteListenerCallback(info, taskId_); } else { // LOCV_EXCL_BR_LINE - HILOG_WARN("taskpool:: onEnqueuedCallBackInfo is null"); + HILOG_DEBUG("taskpool:: onEnqueuedCallBackInfo is null"); } } } // namespace Commonlibrary::Concurrent::TaskPoolModule \ No newline at end of file diff --git a/js_concurrent_module/taskpool/task_manager.cpp b/js_concurrent_module/taskpool/task_manager.cpp index f1e40caf5c21d398d1cb2b8cd6bfade6dcb745d5..c3517807923d0e3a41cf4aae09ce4a4be0438b95 100644 --- a/js_concurrent_module/taskpool/task_manager.cpp +++ b/js_concurrent_module/taskpool/task_manager.cpp @@ -575,7 +575,7 @@ template void TaskManager::TryExpandWithCheckIdle() { if (GetNonIdleTaskNum() == 0) { - HILOG_INFO("taskpool:: no need to create worker"); + HILOG_INFO("taskpool:: no need expand"); return; } @@ -926,7 +926,7 @@ void TaskManager::NotifyExecuteTask() std::lock_guard lock(workersMutex_); if (GetNonIdleTaskNum() == 0 && workers_.size() != idleWorkers_.size()) { // When there are only idle tasks and workers executing them, it is not triggered - HILOG_INFO("taskpool:: not notify execute task"); + HILOG_INFO("taskpool:: no need notify"); return; } if (idleWorkers_.size() == 0) {