Open SyMind opened 1 year ago
原文:https://stackoverflow.com/questions/52447872/how-to-enable-logs-for-language-server-in-visual-studio-code
在 launch.json 配置文件中创建一个新的 Node.js Attach。
launch.json
{ "name": "Attach", "port": 6009, "request": "attach", "skipFiles": [ "<node_internals>/**" ], "type": "pwa-node" },
将 port 从 9229 改为 6009。你还需要在 new LanguageClient() 的 ServerOptions 中传入 6009。
port
9229
6009
new LanguageClient()
ServerOptions
接着使用 F5 启动你的插件,现在你可以执行 Node.js Attach:
在 Call Stack 中看到 lsp 中的输出的控制台信息了。
在
launch.json
配置文件中创建一个新的 Node.js Attach。将
port
从9229
改为6009
。你还需要在new LanguageClient()
的ServerOptions
中传入6009
。接着使用 F5 启动你的插件,现在你可以执行 Node.js Attach:
在 Call Stack 中看到 lsp 中的输出的控制台信息了。