0
owncast/.vscode/launch.json
2020-10-24 16:01:49 -07:00

21 lines
419 B
JSON

{
"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"]
}
]
}