mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-27 14:35:52 +00:00
Demote some older logs.
This commit is contained in:
@@ -756,10 +756,10 @@ void LedgerConsensus::updateOurPositions()
|
|||||||
|
|
||||||
for (std::map<uint32, int>::iterator it = closeTimes.begin(), end = closeTimes.end(); it != end; ++it)
|
for (std::map<uint32, int>::iterator it = closeTimes.begin(), end = closeTimes.end(); it != end; ++it)
|
||||||
{
|
{
|
||||||
cLog(lsINFO) << "CCTime: " << it->first << " has " << it->second << ", " << thresh << " required";
|
cLog(lsTRACE) << "CCTime: " << it->first << " has " << it->second << ", " << thresh << " required";
|
||||||
if (it->second >= thresh)
|
if (it->second >= thresh)
|
||||||
{
|
{
|
||||||
cLog(lsINFO) << "Close time consensus reached: " << it->first;
|
cLog(lsDEBUG) << "Close time consensus reached: " << it->first;
|
||||||
mHaveCloseTimeConsensus = true;
|
mHaveCloseTimeConsensus = true;
|
||||||
closeTime = it->first;
|
closeTime = it->first;
|
||||||
thresh = it->second;
|
thresh = it->second;
|
||||||
|
|||||||
Reference in New Issue
Block a user