================
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits