[Lldb-commits] [lldb] [LLDB] Add log channel for InstrumentationRuntime plugins (PR #168508)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 18 05:25:00 PST 2025
================
@@ -207,8 +208,10 @@ bool ReportRetriever::NotifyBreakpointHit(ProcessSP process_sp,
return false;
StructuredData::ObjectSP report = RetrieveReportData(process_sp);
- if (!report || report->GetType() != lldb::eStructuredDataTypeDictionary)
+ if (!report || report->GetType() != lldb::eStructuredDataTypeDictionary) {
+ LLDB_LOGF(log, "ReportRetriever::RetrieveReportData() failed");
----------------
Michael137 wrote:
```suggestion
LLDB_LOGF(GetLog(LLDBLog::InstrumentationRuntime), "ReportRetriever::RetrieveReportData() failed");
```
https://github.com/llvm/llvm-project/pull/168508
More information about the lldb-commits
mailing list