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 109a674 commit 1af44ffCopy full SHA for 1af44ff
packages/amazonq/src/lsp/chat/messages.ts
@@ -453,7 +453,9 @@ export function registerMessageListeners(
453
if (logPath) {
454
// Open the log directory in the OS file explorer directly
455
languageClient.info('[VSCode Client] Opening logs directory')
456
- await vscode.commands.executeCommand('revealFileInOS', vscode.Uri.file(logPath))
+ const path = require('path')
457
+ const logFilePath = path.join(logPath, 'Amazon Q Logs.log')
458
+ await vscode.commands.executeCommand('revealFileInOS', vscode.Uri.file(logFilePath))
459
result.success = true
460
} else {
461
// Fallback: show error if log path is not available
0 commit comments