summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl
diff options
context:
space:
mode:
authorMatthew Russotto <matthew.russotto@mongodb.com>2022-11-04 14:16:39 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-11-07 17:36:34 +0000
commit8ec9c42faaa3a5f85230ff20f9827d0f6c4d8ff5 (patch)
tree15bf69e4bf0605fffd39fe04740752de0c5b6d1b /src/mongo/db/repl
parentbb5aca605f73cc6842a9dc0a30bca07f185f6931 (diff)
downloadmongo-8ec9c42faaa3a5f85230ff20f9827d0f6c4d8ff5.tar.gz
SERVER-71094 Increase log level for 'Voted yes in election' to (debug) 1
Diffstat (limited to 'src/mongo/db/repl')
-rw-r--r--src/mongo/db/repl/topology_coordinator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/topology_coordinator.cpp b/src/mongo/db/repl/topology_coordinator.cpp
index 030ad0a2792..8d2c4063879 100644
--- a/src/mongo/db/repl/topology_coordinator.cpp
+++ b/src/mongo/db/repl/topology_coordinator.cpp
@@ -3495,7 +3495,7 @@ void TopologyCoordinator::processReplSetRequestVotes(const ReplSetRequestVotesAr
if (!args.isADryRun()) {
_lastVote.setTerm(args.getTerm());
_lastVote.setCandidateIndex(args.getCandidateIndex());
- LOGV2_DEBUG(5972100, 0, "Voting yes in election");
+ LOGV2_DEBUG(5972100, 1, "Voting yes in election");
}
response->setVoteGranted(true);
}