Skip to content

Commit 90df9a7

Browse files
committed
SERVER-21157 Change term warning message in protocol version 0 to LOG(3)
1 parent 9d5281b commit 90df9a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mongo/db/repl/replication_coordinator_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3128,7 +3128,7 @@ Status ReplicationCoordinatorImpl::updateTerm(long long term) {
31283128

31293129
bool ReplicationCoordinatorImpl::_updateTerm_incallback(long long term) {
31303130
if (!isV1ElectionProtocol()) {
3131-
warning() << "Cannot update term in election protocol version 0";
3131+
LOG(3) << "Cannot update term in election protocol version 0";
31323132
return false;
31333133
}
31343134

0 commit comments

Comments
 (0)