diff --git a/src/dfi/validation.cpp b/src/dfi/validation.cpp index 3b5551f4616..a9c665a9c59 100644 --- a/src/dfi/validation.cpp +++ b/src/dfi/validation.cpp @@ -1095,6 +1095,11 @@ static void LiquidityForFuturesLimit(const CBlockIndex *pindex, } const auto tokenAverage = tokenTotal / expectedEntries; + LogPrint(BCLog::FUTURESWAP, + "Liquidity for future swap limit: token src id: %i, token dest id: %i, new average liquidity: %i\n", + key.sourceID, + key.destID, + tokenAverage.GetLow64()); cache.SetLoanTokenAverageLiquidity(key, tokenAverage.GetLow64()); } }