Skip to content

Commit

Permalink
Switch redhat-telemetry module to debug mode in dev environment
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Golovin [email protected]
  • Loading branch information
dgolovin committed Feb 8, 2021
1 parent 5f27b74 commit e1438cc
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
{
"version": "0.2.0",
"configurations": [

{
"name": "Extension",
"type": "extensionHost",
Expand All @@ -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",
Expand All @@ -33,7 +35,8 @@
],
"preLaunchTask": "npm: watch",
"env": {
"OST_DISABLE_COVERAGE": "yes"
"OST_DISABLE_COVERAGE": "yes",
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
}
},
{
Expand All @@ -50,7 +53,8 @@
],
"preLaunchTask": "instrument",
"env": {
"OST_DISABLE_COVERAGE": "no"
"OST_DISABLE_COVERAGE": "no",
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
}
},
{
Expand All @@ -66,7 +70,10 @@
"outFiles": [
"${workspaceFolder}/out/test/integration/**/*.js"
],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: watch",
"env": {
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
}
}
]
}

0 comments on commit e1438cc

Please sign in to comment.