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 496c370 commit 11efc09Copy full SHA for 11efc09
lldb/source/Core/Telemetry.cpp
@@ -123,9 +123,9 @@ void TelemetryManager::atDebuggerStartup(DebuggerTelemetryInfo *entry) {
123
} else {
124
MiscTelemetryInfo misc_info;
125
misc_info.meta_data["internal_errors"] = "Cannot determine CWD";
126
- if (auto er = dispatch(&misc_info)) {
127
- LLDB_LOG(GetLog(LLDBLog::Object),
128
- "Failed to dispatch misc-info at startup");
+ if (llvm::Error er = dispatch(&misc_info)) {
+ LLDB_LOG_ERROR(GetLog(LLDBLog::Object), std::move(er),
+ "Failed to dispatch misc-info at startup: {0}");
129
}
130
131
0 commit comments