Skip to content

Commit 8e18850

Browse files
authored
Merge pull request #10960 from charles-zablit/charles-zablit/lldb/incorrect-log-message-to-6.2
2 parents 7b8f9ca + f7fc8a9 commit 8e18850

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ static bool PrintDemangledArgumentList(Stream &s, const SymbolContext &sc) {
349349

350350
auto info_or_err = GetAndValidateInfo(sc);
351351
if (!info_or_err) {
352-
LLDB_LOG_ERROR(
353-
GetLog(LLDBLog::Language), info_or_err.takeError(),
354-
"Failed to handle ${{function.basename}} frame-format variable: {0}");
352+
LLDB_LOG_ERROR(GetLog(LLDBLog::Language), info_or_err.takeError(),
353+
"Failed to handle ${{function.formatted-arguments}} "
354+
"frame-format variable: {0}");
355355
return false;
356356
}
357357
auto [demangled_name, info] = *info_or_err;

0 commit comments

Comments
 (0)