diff --git a/base/src/thread_pool.cpp b/base/src/thread_pool.cpp index 9951929fd05e0bcc4595d35df9dd49ad8cdab98c..2a2c2111749ee444f7719ae4a5356ce90fe5a271 100644 --- a/base/src/thread_pool.cpp +++ b/base/src/thread_pool.cpp @@ -51,7 +51,7 @@ uint32_t ThreadPool::Start(int numThreads) // Give the name of ThreadPool to threads created by the ThreadPool. int err = pthread_setname_np(t.native_handle(), (myName_ + std::to_string(i)).c_str()); if (err != 0) { - UTILS_LOGW("Failed to set name to thread. %{public}s", strerror(err)); + UTILS_LOGD("Failed to set name to thread. %{public}s", strerror(err)); } threads_.push_back(std::move(t)); }