Skip to content
Snippets Groups Projects
Commit 13241cd5 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

Parser: Increase timer granularity

parent 5581fb28
Branches master
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ void Parser::updateStats()
{
auto duration = std::chrono::steady_clock::now() - m_chrono;
LOG_DEBUG( "Finished all parsing operations in ",
std::chrono::duration_cast<std::chrono::seconds>( duration ).count(), "s" );
std::chrono::duration_cast<std::chrono::milliseconds>( duration ).count(), "ms" );
m_chrono = decltype(m_chrono){};
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment