From dbc2b4c4e9309d9ee3cefc360bae6c44f562390a Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 30 Aug 2012 10:30:19 -0700 Subject: [PATCH] Improve log message text. --- src/LedgerTiming.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LedgerTiming.cpp b/src/LedgerTiming.cpp index 20eb463d06..fb28164f51 100644 --- a/src/LedgerTiming.cpp +++ b/src/LedgerTiming.cpp @@ -40,7 +40,7 @@ int ContinuousLedgerTiming::shouldClose( } if (previousMSeconds > (1000 * (LEDGER_IDLE_INTERVAL + 2))) // the last ledger was very slow to close { - Log(lsTRACE) << "slow to close (p=" << (previousMSeconds) << ")"; + Log(lsTRACE) << "was slow to converge (p=" << (previousMSeconds) << ")"; if (previousMSeconds < 2000) return previousMSeconds; return previousMSeconds - 1000;