Browse Source

Add verbose logging option to launch.json

pull/290/head
Gabe Kangas 5 years ago
parent
commit
de40da1cf0
  1. 28
      .vscode/launch.json

28
.vscode/launch.json vendored

@ -1,12 +1,20 @@ @@ -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"]
}
]
}

Loading…
Cancel
Save