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 9cca26e commit 88095b9Copy full SHA for 88095b9
lldb/tools/lldb-dap/src-ts/debug-adapter-factory.ts
@@ -181,10 +181,13 @@ export class LLDBDapDescriptorFactory
181
* Shows a message box when the debug adapter's path is not found
182
*/
183
static async showLLDBDapNotFoundMessage(path?: string) {
184
+ const message =
185
+ path
186
+ ? `Debug adapter path: ${path} is not a valid file.`
187
+ : "Unable to find the path to the LLDB debug adapter executable.";
188
const openSettingsAction = "Open Settings";
189
const callbackValue = await vscode.window.showErrorMessage(
- path ? `Debug adapter path: ${path} is not a valid file` :
- `Debug adapter executable not found`,
190
+ message,
191
openSettingsAction,
192
);
193
0 commit comments