diff --git a/.vscode/launch.json b/.vscode/launch.json index 3352d1082..fd18bcc74 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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"] + } + ] }