summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarolyn Duan <carolyn.duan@mongodb.com>2021-06-07 19:26:02 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-08-11 18:33:21 +0000
commitfb4606ea3efef560014284e99bf5db5755671f58 (patch)
treec9e767fa129cd4dc40574f332ba9f387b7ce33f5
parentd5d9bd45185b4ea2a4d7600512559326880290c9 (diff)
downloadmongo-fb4606ea3efef560014284e99bf5db5755671f58.tar.gz
SERVER-44316 Remove incorrect log message in initial_syncer.cpp
(cherry picked from commit f1370eb80c66f1439bc2ea135a2bf25e80eda1ed)
-rw-r--r--src/mongo/db/repl/initial_syncer.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mongo/db/repl/initial_syncer.cpp b/src/mongo/db/repl/initial_syncer.cpp
index c56ef6794f0..17df0e8f7d8 100644
--- a/src/mongo/db/repl/initial_syncer.cpp
+++ b/src/mongo/db/repl/initial_syncer.cpp
@@ -1183,14 +1183,12 @@ void InitialSyncer::_fcvFetcherCallback(const StatusWith<Fetcher::QueryResponse>
<< _initialSyncState->beginFetchingTimestamp.toBSON());
invariant(!result.getValue().documents.empty());
- LOGV2_DEBUG(21177,
+ LOGV2_DEBUG(4431600,
2,
- "Setting begin applying timestamp to {beginApplyingTimestamp} using last "
- "oplog entry: {lastOplogEntry}, ns: {namespace} and the begin "
- "fetching timestamp to {beginFetchingTimestamp}",
+ "Setting begin applying timestamp to {beginApplyingTimestamp}, ns: "
+ "{namespace} and the begin fetching timestamp to {beginFetchingTimestamp}",
"Setting begin applying timestamp and begin fetching timestamp",
"beginApplyingTimestamp"_attr = _initialSyncState->beginApplyingTimestamp,
- "lastOplogEntry"_attr = redact(result.getValue().documents.front()),
"namespace"_attr = _opts.localOplogNS,
"beginFetchingTimestamp"_attr = _initialSyncState->beginFetchingTimestamp);