From de40da1cf07cd2da982cb75e178079a8b08f12c2 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 24 Oct 2020 14:32:42 -0700 Subject: [PATCH] Add verbose logging option to launch.json --- .vscode/launch.json | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) 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"] + } + ] }