================ @@ -555,6 +555,18 @@ StatsDuration::Duration SymbolFileOnDemand::GetDebugInfoIndexTime() { return m_sym_file_impl->GetDebugInfoIndexTime(); } +void SymbolFileOnDemand::ResetDebugInfoParseTime() { + LLDB_LOG(GetLog(), "[{0}] {1} is not skipped", GetSymbolFileName(), + __FUNCTION__); + return m_sym_file_impl->ResetDebugInfoParseTime(); +} + +void SymbolFileOnDemand::ResetDebugInfoIndexTime() { + LLDB_LOG(GetLog(), "[{0}] {1} is not skipped", GetSymbolFileName(), + __FUNCTION__); + return m_sym_file_impl->ResetDebugInfoIndexTime(); +} + ---------------- clayborg wrote:
Switch to a single function `ResetStatistics` and fix the log text "is not skipped" seems wrong? https://github.com/llvm/llvm-project/pull/113723 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits