Tweaked warning level for lagging nodes
This commit is contained in:
+1
-2
@@ -1444,8 +1444,7 @@ bool P2PServer::P2PClient::on_block_broadcast(const uint8_t* buf, uint32_t size)
|
|||||||
}
|
}
|
||||||
else if (peer_height > our_height) {
|
else if (peer_height > our_height) {
|
||||||
if (peer_height >= our_height + 2) {
|
if (peer_height >= our_height + 2) {
|
||||||
const int level = (peer_height >= our_height + 3) ? 3 : 4;
|
LOGWARN(3, "peer " << static_cast<char*>(m_addrString) << " is ahead on mainchain (height " << peer_height << ", your height " << our_height << "). Is your monerod stuck or lagging?");
|
||||||
LOGWARN(level , "peer " << static_cast<char*>(m_addrString) << " is ahead on mainchain (height " << peer_height << ", your height " << our_height << "). Is your monerod stuck or lagging?");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
Reference in New Issue
Block a user