From 8675b45e434d0ade6998233d3f4d11b854301635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Wed, 14 Dec 2022 11:59:06 +0100 Subject: [PATCH] fix: Improve VSCode debugging setup (no-changelog) (#4922) * gracefully shutdown n8n while debugging in vscode * capture stdout/stderr in vscode debugging instead of just the console.logs --- .vscode/launch.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3548c6da78..13c32cd994 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -20,7 +20,9 @@ "type": "node", "env": { // "N8N_PORT": "5679", - } + }, + "outputCapture": "std", + "killBehavior": "polite" }, { "name": "Debug CLI tests",