我在Visual Studio Code中的Golang调试器有问题。 我的launch.json:
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}",
"port": 2345,
"host": "127.0.0.1",
"env": {},
"args": []
}
]
我设置了一个断点,我启动了调试器,它启动并写入调试控制台:
API server listening at: 127.0.0.1:2345
什么也没发生!
在此先感谢您的帮助!