You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To enable vscode language server client tracing we need the langId. I couldn't find it.
Without it the "Ruby Language Server" doesn't show up on Output tab unless there's some warn/error and it's hard to debug.
{
"solargraph.trace.server": "verbose",
}
Logging Support for Language Server
If you are using vscode-languageclient to implement the client, you can specify a setting [langId].trace.server that instructs the Client to log communications between Language Client / Server to a channel of the Language Client's name.
For lsp-sample, you can set this setting: "languageServerExample.trace.server": "verbose". Now head to the channel "Language Server Example". You should see the logs:
I think we should add the langId as first param here:
To enable vscode language server client tracing we need the
langId
. I couldn't find it.Without it the "Ruby Language Server" doesn't show up on Output tab unless there's some warn/error and it's hard to debug.
I think we should add the
langId
as first param here:vscode-solargraph/src/language-client.ts
Line 150 in 0c79874
After adding 'solargraph' as first argument, tracing setting works
The text was updated successfully, but these errors were encountered: