Skip to content

Commit

Permalink
Silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerkaraszewski committed Dec 12, 2024
1 parent 7488bd1 commit 0b8f440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlitecluster/SQLiteNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1850,7 +1850,7 @@ void SQLiteNode::_onDisconnect(SQLitePeer* peer) {
// Store the time at which this happened for diagnostic purposes.
_lastLostQuorum = STimeNow();
for (const auto* p : _peerList) {
SWARN("[clustersync] Peer " << p->name << " logged in? " << (p->loggedIn ? "TRUE" : "FALSE") << (p->permaFollower ? " (permaFollower)" : ""));
SINFO("[clustersync] Peer " << p->name << " logged in? " << (p->loggedIn ? "TRUE" : "FALSE") << (p->permaFollower ? " (permaFollower)" : ""));
}
_changeState(SQLiteNodeState::SEARCHING);
}
Expand Down

0 comments on commit 0b8f440

Please sign in to comment.