vscode 调试配置信息

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "projectname",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/main.go",
"env": {
"name1":"value1",
"name2":"value2"
},
"args": ["-name1=value1","-name2=value2"],
"dlvLoadConfig": {
"followPointers": true,
"maxVariableRecurse": 1,
"maxStringLen": 1024, //debug 值显示不全可以设置大一点
"maxArrayValues": 64,
"maxStructFields": -1
}
},
]
}

posted @ 2021-02-26 11:35  O-ll-O  阅读(184)  评论(0编辑  收藏  举报