From da9e535c7aa0d7298e0c09e024548816cbb29daa Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Fri, 18 Sep 2015 23:35:25 +0900 Subject: [PATCH] nghttpx: Log worker thread creating in NOTICE level --- src/shrpx_connection_handler.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/shrpx_connection_handler.cc b/src/shrpx_connection_handler.cc index bce7e0db..76cb51c4 100644 --- a/src/shrpx_connection_handler.cc +++ b/src/shrpx_connection_handler.cc @@ -202,9 +202,7 @@ int ConnectionHandler::create_worker_thread(size_t num) { workers_.push_back(std::move(worker)); worker_loops_.push_back(loop); - if (LOG_ENABLED(INFO)) { - LLOG(INFO, this) << "Created thread #" << workers_.size() - 1; - } + LLOG(NOTICE, this) << "Created worker thread #" << workers_.size() - 1; } for (auto &worker : workers_) {