[Lldb-commits] [PATCH] D100443: [lldb-vscode] Reduce chattiness of progress events

2021-04-14 Thread walter erquinigo via Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGcc88d301a0bc: [lldb-vscode] Reduce chattiness of progress events (authored by wallace). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST

[Lldb-commits] [PATCH] D100443: [lldb-vscode] Reduce chattiness of progress events

2021-04-13 Thread walter erquinigo via Phabricator via lldb-commits
wallace added inline comments. Comment at: lldb/tools/lldb-vscode/ProgressEvent.cpp:38-78 +const char *ProgressEvent::GetEventName() const { + if (m_event_type == progressStart) +return "progressStart"; + else if (m_event_type == progressEnd) +return "progressEnd"; +

[Lldb-commits] [PATCH] D100443: [lldb-vscode] Reduce chattiness of progress events

2021-04-13 Thread walter erquinigo via Phabricator via lldb-commits
wallace created this revision. wallace added reviewers: clayborg, aadsm. Herald added a subscriber: mgorny. wallace requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Progress events internally have a completed count and a total count, which