Remove chatty debug.

This commit is contained in:
JoelKatz
2012-08-13 22:27:20 -07:00
parent ba6e65214b
commit 8068e5fbb9

View File

@@ -151,13 +151,13 @@ boost::unordered_map<uint256, int> ValidationCollection::getCurrentValidations()
{
if (pair.oldest)
{
Log(lsTRACE) << "OLD " << pair.oldest->getLedgerHash().GetHex() << " " <<
// Log(lsTRACE) << "OLD " << pair.oldest->getLedgerHash().GetHex() << " " <<
boost::lexical_cast<std::string>(pair.oldest->getCloseTime());
++ret[pair.oldest->getLedgerHash()];
}
if (pair.newest)
{
Log(lsTRACE) << "NEW " << pair.newest->getLedgerHash().GetHex() << " " <<
// Log(lsTRACE) << "NEW " << pair.newest->getLedgerHash().GetHex() << " " <<
boost::lexical_cast<std::string>(pair.newest->getCloseTime());
++ret[pair.newest->getLedgerHash()];
}