[debug] Minor search logs improvement

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-08-29 15:54:04 +02:00 committed by Alexander Borsuk
parent ba994ac3b0
commit 179f7dc567
3 changed files with 7 additions and 5 deletions

View file

@ -28,6 +28,7 @@ public:
}
inline double ElapsedSeconds() const { return TimeElapsedAs<std::chrono::duration<double>>().count(); }
inline uint64_t ElapsedMilliseconds() const { return TimeElapsedAs<std::chrono::milliseconds>().count(); }
inline void Reset() { m_startTime = std::chrono::steady_clock::now(); }
};

View file

@ -33,12 +33,13 @@ public:
void Emit(bool force = false)
{
if (m_prevEmitSize == m_results.GetCount() && !force)
auto const newCount = m_results.GetCount();
if (m_prevEmitSize == newCount && !force)
return;
m_prevEmitSize = m_results.GetCount();
LOG(LINFO, ("Emitting a new batch of results. Time since search start:",
m_timer.ElapsedSeconds(), "seconds."));
LOG(LINFO, ("Emitting a new batch of results:", newCount - m_prevEmitSize, ",",
m_timer.ElapsedMilliseconds(), "ms since the search has started."));
m_prevEmitSize = m_results.GetCount();
if (m_onResults)
m_onResults(m_results);

View file

@ -288,7 +288,7 @@ void Engine::DoSearch(SearchParams const & params, shared_ptr<ProcessorHandle> h
LOG(LINFO, ("Search started."));
base::Timer timer;
SCOPE_GUARD(printDuration, [&timer]() {
LOG(LINFO, ("Search ended. Time:", timer.ElapsedSeconds(), "seconds."));
LOG(LINFO, ("Search ended in", timer.ElapsedMilliseconds(), "ms."));
});
processor.Reset();