summaryrefslogtreecommitdiff
path: root/src/mongo/db/ttl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/ttl.cpp')
-rw-r--r--src/mongo/db/ttl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/ttl.cpp b/src/mongo/db/ttl.cpp
index 9eda88a8abe..e224b6876e3 100644
--- a/src/mongo/db/ttl.cpp
+++ b/src/mongo/db/ttl.cpp
@@ -155,14 +155,14 @@ public:
* Signals the thread to quit and then waits until it does.
*/
void shutdown() {
- LOGV2(36841000, "Shutting down TTL collection monitor thread");
+ LOGV2(3684100, "Shutting down TTL collection monitor thread");
{
stdx::lock_guard<Latch> lk(_stateMutex);
_shuttingDown = true;
_shuttingDownCV.notify_one();
}
wait();
- LOGV2(36841001, "Finished shutting down TTL collection monitor thread");
+ LOGV2(3684101, "Finished shutting down TTL collection monitor thread");
}
private: