SyMind / learning

路漫漫其修远兮,吾将上下而求索。
10 stars 1 forks source link

查看 VSCode 中 LSP 的控制台信息 #56

Open SyMind opened 1 year ago

SyMind commented 1 year ago

原文:https://stackoverflow.com/questions/52447872/how-to-enable-logs-for-language-server-in-visual-studio-code

launch.json 配置文件中创建一个新的 Node.js Attach

image

{
    "name": "Attach",
    "port": 6009,
    "request": "attach",
    "skipFiles": [
        "<node_internals>/**"
    ],
    "type": "pwa-node"
},

port9229 改为 6009。你还需要在 new LanguageClient()ServerOptions 中传入 6009

image

接着使用 F5 启动你的插件,现在你可以执行 Node.js Attach

image

Call Stack 中看到 lsp 中的输出的控制台信息了。

image