Add verbose logging option to launch.json

This commit is contained in:
Gabe Kangas 2020-10-24 14:32:42 -07:00
parent 0374bd262f
commit de40da1cf0

28
.vscode/launch.json vendored
View File

@ -1,12 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}"
}
]
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}",
},
{
"name": "Run w/ verbose logging",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}",
"args": ["--enableDebugFeatures --enableVerboseLogging"]
}
]
}