Skip to content

Commit 9ae69b4

Browse files
committed
refine
1 parent b24c39d commit 9ae69b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

be/src/util/threadpool.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

275275
Status ThreadPool::try_create_thread(int thread_num, std::lock_guard<std::mutex>&) {
@@ -333,7 +333,7 @@ Status ThreadPool::init() {
333333
}
334334

335335
void 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

0 commit comments

Comments
 (0)