Skip to content

Commit e1438cc

Browse files
committed
Switch redhat-telemetry module to debug mode in dev environment
Signed-off-by: Denis Golovin [email protected]
1 parent 5f27b74 commit e1438cc

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.vscode/launch.json

+12-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
{
66
"version": "0.2.0",
77
"configurations": [
8-
98
{
109
"name": "Extension",
1110
"type": "extensionHost",
@@ -17,7 +16,10 @@
1716
"outFiles": [
1817
"${workspaceFolder}/out/src/**/*.js"
1918
],
20-
"preLaunchTask": "npm: watch"
19+
"preLaunchTask": "npm: watch",
20+
"env": {
21+
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
22+
}
2123
},
2224
{
2325
"name": "Extension Tests Debug",
@@ -33,7 +35,8 @@
3335
],
3436
"preLaunchTask": "npm: watch",
3537
"env": {
36-
"OST_DISABLE_COVERAGE": "yes"
38+
"OST_DISABLE_COVERAGE": "yes",
39+
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
3740
}
3841
},
3942
{
@@ -50,7 +53,8 @@
5053
],
5154
"preLaunchTask": "instrument",
5255
"env": {
53-
"OST_DISABLE_COVERAGE": "no"
56+
"OST_DISABLE_COVERAGE": "no",
57+
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
5458
}
5559
},
5660
{
@@ -66,7 +70,10 @@
6670
"outFiles": [
6771
"${workspaceFolder}/out/test/integration/**/*.js"
6872
],
69-
"preLaunchTask": "npm: watch"
73+
"preLaunchTask": "npm: watch",
74+
"env": {
75+
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
76+
}
7077
}
7178
]
7279
}

0 commit comments

Comments
 (0)