owncast/.vscode/launch.json

21 lines
419 B
JSON
Raw Normal View History

{
"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}",
2020-10-25 02:01:49 +03:00
"args": ["-enableDebugFeatures", "-enableVerboseLogging"]
}
]
}