Commit da9e535c authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Log worker thread creating in NOTICE level

parent dbbc7296
...@@ -202,9 +202,7 @@ int ConnectionHandler::create_worker_thread(size_t num) { ...@@ -202,9 +202,7 @@ int ConnectionHandler::create_worker_thread(size_t num) {
workers_.push_back(std::move(worker)); workers_.push_back(std::move(worker));
worker_loops_.push_back(loop); worker_loops_.push_back(loop);
if (LOG_ENABLED(INFO)) { LLOG(NOTICE, this) << "Created worker thread #" << workers_.size() - 1;
LLOG(INFO, this) << "Created thread #" << workers_.size() - 1;
}
} }
for (auto &worker : workers_) { for (auto &worker : workers_) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment