File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ ThreadPool::~ThreadPool() {
269269 CHECK_EQ (1 , _tokens.size ()) << absl::Substitute (
270270 " Threadpool $0 destroyed with $1 allocated tokens" , _name, _tokens.size ());
271271 shutdown ();
272- LOG_INFO (" Thread pool {} destroyed" , _name);
272+ VLOG_DEBUG << fmt::format (" Thread pool {} destroyed" , _name);
273273}
274274
275275Status ThreadPool::try_create_thread (int thread_num, std::lock_guard<std::mutex>&) {
@@ -333,7 +333,7 @@ Status ThreadPool::init() {
333333}
334334
335335void ThreadPool::shutdown () {
336- LOG_INFO (" Shutting down thread pool {}" , _name);
336+ VLOG_DEBUG << fmt::format (" Shutting down thread pool {}" , _name);
337337 // Why access to doris_metrics is safe here?
338338 // Since DorisMetrics is a singleton, it will be destroyed only after doris_main is exited.
339339 // The shutdown/destroy of ThreadPool is guaranteed to take place before doris_main exits by
You can’t perform that action at this time.
0 commit comments