Skip to content

Commit 0be3348

Browse files
committed
[lldb] Improve log message to include missing strings
1 parent 0469bb9 commit 0be3348

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/source/DataFormatters/FormatterSection.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ void LoadTypeSummariesForModule(ModuleSP module_sp) {
103103
}
104104
if (type_name.empty() || summary_string.empty()) {
105105
LLDB_LOG(GetLog(LLDBLog::DataFormatters),
106-
"Missing string(s) in embedded type summary in {0}.",
107-
module_sp->GetFileSpec());
106+
"Missing string(s) in embedded type summary in {0}, "
107+
"type_name={1}, summary={2}",
108+
module_sp->GetFileSpec(), type_name, summary_string);
108109
return;
109110
}
110111
TypeSummaryImpl::Flags flags;

0 commit comments

Comments
 (0)