From e1438cc059b1e39e60ac09355d681c52153667f6 Mon Sep 17 00:00:00 2001 From: Denis Golovin Date: Mon, 8 Feb 2021 10:38:34 -0800 Subject: [PATCH] Switch redhat-telemetry module to debug mode in dev environment Signed-off-by: Denis Golovin dgolovin@redhat.com --- .vscode/launch.json | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 52dabcf10..46edcce12 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,6 @@ { "version": "0.2.0", "configurations": [ - { "name": "Extension", "type": "extensionHost", @@ -17,7 +16,10 @@ "outFiles": [ "${workspaceFolder}/out/src/**/*.js" ], - "preLaunchTask": "npm: watch" + "preLaunchTask": "npm: watch", + "env": { + "VSCODE_REDHAT_TELEMETRY_DEBUG":"true" + } }, { "name": "Extension Tests Debug", @@ -33,7 +35,8 @@ ], "preLaunchTask": "npm: watch", "env": { - "OST_DISABLE_COVERAGE": "yes" + "OST_DISABLE_COVERAGE": "yes", + "VSCODE_REDHAT_TELEMETRY_DEBUG":"true" } }, { @@ -50,7 +53,8 @@ ], "preLaunchTask": "instrument", "env": { - "OST_DISABLE_COVERAGE": "no" + "OST_DISABLE_COVERAGE": "no", + "VSCODE_REDHAT_TELEMETRY_DEBUG":"true" } }, { @@ -66,7 +70,10 @@ "outFiles": [ "${workspaceFolder}/out/test/integration/**/*.js" ], - "preLaunchTask": "npm: watch" + "preLaunchTask": "npm: watch", + "env": { + "VSCODE_REDHAT_TELEMETRY_DEBUG":"true" + } } ] }