From 2ca21936178202a7e5aa9e37cd9f5a521883e21b Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Mon, 18 Nov 2024 10:05:52 -0300 Subject: [PATCH] chore(debugger): add verbosity flag in launch.json --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index b103385..7d02c16 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,8 +7,8 @@ "request": "launch", "mode": "debug", "program": "${workspaceFolder}/main.go", - "envFile": "${workspaceFolder}/.env" - "args": [""], + "envFile": "${workspaceFolder}/.env", + "args": ["-v"], } ] }