From 386d27d6469d3bf8ea82932ba0a636b0d59fb210 Mon Sep 17 00:00:00 2001 From: Vibhav Pant Date: Sat, 9 Sep 2023 13:02:15 +0530 Subject: [PATCH] ShutDown: Remove extraneous logs --- internal/platform/implementation/linux/thread_pool.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/platform/implementation/linux/thread_pool.cc b/internal/platform/implementation/linux/thread_pool.cc index fe2d3164..8c37dcd9 100644 --- a/internal/platform/implementation/linux/thread_pool.cc +++ b/internal/platform/implementation/linux/thread_pool.cc @@ -89,9 +89,6 @@ void ThreadPool::ShutDown() { absl::MutexLock l(&tasks_mutex_); shut_down_.store(true, std::memory_order_acquire); } - NEARBY_LOGS(INFO) - << __func__ << ": asked to shut down, waiting for active threads to stop"; - { absl::ReaderMutexLock l(&threads_mutex_); for (auto &thread : threads_) { @@ -101,7 +98,6 @@ void ThreadPool::ShutDown() { absl::MutexLock l(&threads_mutex_); threads_.clear(); - NEARBY_LOGS(INFO) << __func__ << ": shut down thread pool"; } Runnable ThreadPool::NextTask() {