From d97fa6d7e3e84b272fcb50a4580856a25e5ffed8 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sat, 3 Sep 2022 14:35:09 +0300 Subject: [PATCH] Log when removing from MwmValue cache. Signed-off-by: Viktor Govako --- indexer/mwm_set.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indexer/mwm_set.cpp b/indexer/mwm_set.cpp index 0bd57dd487..e901be08d5 100644 --- a/indexer/mwm_set.cpp +++ b/indexer/mwm_set.cpp @@ -339,6 +339,7 @@ void MwmSet::UnlockValueImpl(MwmId const & id, unique_ptr p, EventList m_cache.push_back(make_pair(id, move(p))); if (m_cache.size() > m_cacheSize) { + LOG(LDEBUG, ("MwmValue max cache size reached! Added", id, "removed", m_cache.front().first)); ASSERT_EQUAL(m_cache.size(), m_cacheSize + 1, ()); m_cache.pop_front(); }