From 76076f0fc7b8fae32bb797b5f954d77f10d8f183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Wouts?= Date: Sun, 22 Oct 2023 23:15:10 +1100 Subject: [PATCH] chore: set up debug logging for VS Code launch tasks --- .vscode/launch.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 878287c2045..0ef47566d68 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,6 +10,9 @@ "--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}/integrations/vscode" ], + "env": { + "PREVIEWJS_LOG_LEVEL": "debug" + }, "preLaunchTask": "build" }, { @@ -21,6 +24,9 @@ "--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}/integrations/vscode" ], + "env": { + "PREVIEWJS_LOG_LEVEL": "debug" + }, "preLaunchTask": "build:pro" } ]