We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0469bb9 commit 0be3348Copy full SHA for 0be3348
lldb/source/DataFormatters/FormatterSection.cpp
@@ -103,8 +103,9 @@ void LoadTypeSummariesForModule(ModuleSP module_sp) {
103
}
104
if (type_name.empty() || summary_string.empty()) {
105
LLDB_LOG(GetLog(LLDBLog::DataFormatters),
106
- "Missing string(s) in embedded type summary in {0}.",
107
- module_sp->GetFileSpec());
+ "Missing string(s) in embedded type summary in {0}, "
+ "type_name={1}, summary={2}",
108
+ module_sp->GetFileSpec(), type_name, summary_string);
109
return;
110
111
TypeSummaryImpl::Flags flags;
0 commit comments