diff options
Diffstat (limited to 'extension/src/debugPanel.ts')
-rw-r--r-- | extension/src/debugPanel.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extension/src/debugPanel.ts b/extension/src/debugPanel.ts index ece362f5..3c4f8481 100644 --- a/extension/src/debugPanel.ts +++ b/extension/src/debugPanel.ts @@ -249,6 +249,16 @@ export function setupDebugPanel( }); } ); + vscode.window + .showInformationMessage( + "Click here to view the server logs, or use the 'continue.viewLogs' VS Code command.", + "View Logs" + ) + .then((selection) => { + if (selection === "View Logs") { + vscode.commands.executeCommand("continue.viewLogs"); + } + }); break; } } |