From 6d020177ca02d49dbe066e42c41b9fca84e0745b Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 16 May 2013 12:01:55 -0700 Subject: [PATCH] Log the sequence in the close time message. --- src/cpp/ripple/LedgerConsensus.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cpp/ripple/LedgerConsensus.cpp b/src/cpp/ripple/LedgerConsensus.cpp index 556ea0de9..479a2d220 100644 --- a/src/cpp/ripple/LedgerConsensus.cpp +++ b/src/cpp/ripple/LedgerConsensus.cpp @@ -695,7 +695,8 @@ void LedgerConsensus::updateOurPositions() for (std::map::iterator it = closeTimes.begin(), end = closeTimes.end(); it != end; ++it) { - cLog(lsDEBUG) << "CCTime: " << it->first << " has " << it->second << ", " << threshVote << " required"; + cLog(lsDEBUG) << "CCTime: seq" << mPreviousLedger->getLedgerSeq() + 1 << ": " << + it->first << " has " << it->second << ", " << threshVote << " required"; if (it->second >= threshVote) { cLog(lsDEBUG) << "Close time consensus reached: " << it->first;