Skip to content

Commit 17f2596

Browse files
committed
Auto merge of #17438 - jjoeldaniel:toggle_lsp_logs, r=Veykril
feat: add `toggleLSPLogs` command Implement client-side command to toggle LSP logs in VSCode. The command replaces the need to add/remove the `"rust-analyzer.trace.server": "verbose"` setting each time one wants to display logs. I've also updated the docs/ instances that reference the now outdated manual method. The command labeled `rust-analyzer: Toggle LSP Logs` enables the setting project-wide and opens the relevant trace output channel. Closes #8233
2 parents 50ba0c0 + 5934eed commit 17f2596

File tree

5 files changed

+25
-2
lines changed

5 files changed

+25
-2
lines changed

src/tools/rust-analyzer/docs/dev/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ To log all communication between the server and the client, there are two choice
145145
```
146146
env RA_LOG=lsp_server=debug code .
147147
```
148-
* You can log on the client side, by enabling `"rust-analyzer.trace.server": "verbose"` workspace setting.
148+
* You can log on the client side, by the `rust-analyzer: Toggle LSP Logs` command or enabling `"rust-analyzer.trace.server": "verbose"` workspace setting.
149149
These logs are shown in a separate tab in the output and could be used with LSP inspector.
150150
Kudos to [@DJMcNab](https://github.com/DJMcNab) for setting this awesome infra up!
151151

src/tools/rust-analyzer/docs/user/manual.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ The next thing to check would be panic messages in rust-analyzer's log.
591591
Log messages are printed to stderr, in VS Code you can see them in the `Output > Rust Analyzer Language Server` tab of the panel.
592592
To see more logs, set the `RA_LOG=info` environment variable, this can be done either by setting the environment variable manually or by using `rust-analyzer.server.extraEnv`, note that both of these approaches require the server to be restarted.
593593

594-
To fully capture LSP messages between the editor and the server, set `"rust-analyzer.trace.server": "verbose"` config and check
594+
To fully capture LSP messages between the editor and the server, run the `rust-analyzer: Toggle LSP Logs` command and check
595595
`Output > Rust Analyzer Language Server Trace`.
596596

597597
The root cause for many "`nothing works`" problems is that rust-analyzer fails to understand the project structure.

src/tools/rust-analyzer/editors/code/package.json

+9
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,11 @@
300300
"command": "rust-analyzer.toggleCheckOnSave",
301301
"title": "Toggle Check on Save",
302302
"category": "rust-analyzer"
303+
},
304+
{
305+
"command": "rust-analyzer.toggleLSPLogs",
306+
"title": "Toggle LSP Logs",
307+
"category": "rust-analyzer"
303308
}
304309
],
305310
"keybindings": [
@@ -3123,6 +3128,10 @@
31233128
{
31243129
"command": "rust-analyzer.viewMemoryLayout",
31253130
"when": "inRustProject"
3131+
},
3132+
{
3133+
"command": "rust-analyzer.toggleLSPLogs",
3134+
"when": "inRustProject"
31263135
}
31273136
],
31283137
"editor/context": [

src/tools/rust-analyzer/editors/code/src/commands.ts

+13
Original file line numberDiff line numberDiff line change
@@ -1489,3 +1489,16 @@ export function toggleCheckOnSave(ctx: Ctx): Cmd {
14891489
ctx.refreshServerStatus();
14901490
};
14911491
}
1492+
1493+
export function toggleLSPLogs(ctx: Ctx): Cmd {
1494+
return async () => {
1495+
const config = vscode.workspace.getConfiguration("rust-analyzer");
1496+
const targetValue =
1497+
config.get<string | undefined>("trace.server") === "verbose" ? undefined : "verbose";
1498+
1499+
await config.update("trace.server", targetValue, vscode.ConfigurationTarget.Workspace);
1500+
if (targetValue && ctx.client && ctx.client.traceOutputChannel) {
1501+
ctx.client.traceOutputChannel.show();
1502+
}
1503+
};
1504+
}

src/tools/rust-analyzer/editors/code/src/main.ts

+1
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ function createCommands(): Record<string, CommandFactory> {
177177
serverVersion: { enabled: commands.serverVersion },
178178
viewMemoryLayout: { enabled: commands.viewMemoryLayout },
179179
toggleCheckOnSave: { enabled: commands.toggleCheckOnSave },
180+
toggleLSPLogs: { enabled: commands.toggleLSPLogs },
180181
// Internal commands which are invoked by the server.
181182
applyActionGroup: { enabled: commands.applyActionGroup },
182183
applySnippetWorkspaceEdit: { enabled: commands.applySnippetWorkspaceEditCommand },

0 commit comments

Comments
 (0)