Remove debug.

This commit is contained in:
JoelKatz
2012-07-15 23:30:29 -07:00
parent d3f95a37c9
commit d1adcb03c6
2 changed files with 0 additions and 3 deletions

View File

@@ -370,7 +370,6 @@ int LedgerConsensus::statePreClose()
int sinceClose = theApp->getOPs().getNetworkTimeNC() - mPreviousLedger->getCloseTimeNC();
Log(lsINFO) << "CLC:: pre close: sinceClose=" << sinceClose;
if (ContinuousLedgerTiming::shouldClose(anyTransactions, mPreviousProposers, proposersClosed,
mPreviousSeconds, sinceClose) <= sinceClose)
{ // it is time to close the ledger (swap default and wobble ledgers)
@@ -384,7 +383,6 @@ int LedgerConsensus::statePreClose()
assert (initial->getParentHash() == mPreviousLedger->getHash());
takeInitialPosition(initial);
}
else Log(lsINFO) << "CLC:: not closing";
return 1;
}

View File

@@ -36,7 +36,6 @@ int ContinuousLedgerTiming::shouldClose(
Log(lsTRACE) << "slow to close";
return previousSeconds - 1;
}
Log(lsTRACE) << "normal idle";
return LEDGER_IDLE_INTERVAL; // normal idle
}