Skip to content

Commit 7dc7165

Browse files
committed
GDPR comments
1 parent fbb3e25 commit 7dc7165

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/vs/platform/telemetry/browser/errorTelemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default class ErrorTelemetry {
153153
"column": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
154154
}
155155
*/
156-
// __GDPR__TODO more properties are missing
156+
// __GDPR__TODO what's the complete set of properties?
157157
this._telemetryService.publicLog('UnhandledError', error);
158158
}
159159
this._buffer.length = 0;

src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,7 @@ export class RawDebugSession extends V8Protocol implements debug.ISession {
171171
*/
172172
this.telemetryService.publicLog('debugProtocolErrorResponse', { error: telemetryMessage });
173173
if (this.customTelemetryService) {
174-
/* __GDPR__
175-
"debugProtocolErrorResponse" : {
176-
"error" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
177-
}
178-
*/
174+
// __GDPR__TODO the message is sent in the name of the adapter but since the adapters are an open set, this can not be statically declared
179175
this.customTelemetryService.publicLog('debugProtocolErrorResponse', { error: telemetryMessage });
180176
}
181177
}

0 commit comments

Comments
 (0)