Skip to content

Commit 5934eed

Browse files
committed
feat: add toggleLSPLogs command
add `toggleLSPLogs` command update docs to reflect new command
1 parent e0c1b2b commit 5934eed

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
@@ -1485,3 +1485,16 @@ export function toggleCheckOnSave(ctx: Ctx): Cmd {
14851485
ctx.refreshServerStatus();
14861486
};
14871487
}
1488+
1489+
export function toggleLSPLogs(ctx: Ctx): Cmd {
1490+
return async () => {
1491+
const config = vscode.workspace.getConfiguration("rust-analyzer");
1492+
const targetValue =
1493+
config.get<string | undefined>("trace.server") === "verbose" ? undefined : "verbose";
1494+
1495+
await config.update("trace.server", targetValue, vscode.ConfigurationTarget.Workspace);
1496+
if (targetValue && ctx.client && ctx.client.traceOutputChannel) {
1497+
ctx.client.traceOutputChannel.show();
1498+
}
1499+
};
1500+
}

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)