summaryrefslogtreecommitdiff
path: root/src/mongo/transport/service_executor_synchronous.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/transport/service_executor_synchronous.cpp')
-rw-r--r--src/mongo/transport/service_executor_synchronous.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/transport/service_executor_synchronous.cpp b/src/mongo/transport/service_executor_synchronous.cpp
index 8fe383768e2..91cdf907b60 100644
--- a/src/mongo/transport/service_executor_synchronous.cpp
+++ b/src/mongo/transport/service_executor_synchronous.cpp
@@ -33,6 +33,7 @@
#include "mongo/transport/service_executor_synchronous.h"
+#include "mongo/logv2/log.h"
#include "mongo/stdx/thread.h"
#include "mongo/transport/service_entry_point_utils.h"
#include "mongo/transport/service_executor_gen.h"
@@ -63,7 +64,7 @@ Status ServiceExecutorSynchronous::start() {
}
Status ServiceExecutorSynchronous::shutdown(Milliseconds timeout) {
- LOG(3) << "Shutting down passthrough executor";
+ LOGV2_DEBUG(22982, 3, "Shutting down passthrough executor");
_stillRunning.store(false);
@@ -113,7 +114,7 @@ Status ServiceExecutorSynchronous::schedule(Task task,
// First call to schedule() for this connection, spawn a worker thread that will push jobs
// into the thread local job queue.
- LOG(3) << "Starting new executor thread in passthrough mode";
+ LOGV2_DEBUG(22983, 3, "Starting new executor thread in passthrough mode");
Status status = launchServiceWorkerThread([this, task = std::move(task)] {
_numRunningWorkerThreads.addAndFetch(1);