summaryrefslogtreecommitdiff
path: root/src
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-06-16 18:58:07 +0000
commit310e87ab2810e9c1b3e1e7976a5db1cefd30601f (patch)
tree211c9ea92e1703d935940add90e1b62728078e5c /src
parentd337b8db00509ecc8eeb8f9002ffd92778ed8bbe (diff)
downloadmongo-310e87ab2810e9c1b3e1e7976a5db1cefd30601f.tar.gz
SERVER-44316 Remove incorrect log message in initial_syncer.cpp
(cherry picked from commit f1370eb80c66f1439bc2ea135a2bf25e80eda1ed)
Diffstat (limited to 'src')
-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 c9bfb2c06dd..6147ec2fbba 100644
--- a/src/mongo/db/repl/initial_syncer.cpp
+++ b/src/mongo/db/repl/initial_syncer.cpp
@@ -1165,14 +1165,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);