omit endPoint where it defaults to none

This commit is contained in:
kieferrm
2017-09-20 15:03:24 -07:00
committed by Kai Maetzel
parent 6607604333
commit fbb3e25987
77 changed files with 408 additions and 408 deletions

View File

@@ -388,7 +388,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
window.showErrorMessage(localize('serverCouldNotBeStarted', 'TypeScript language server couldn\'t be started. Error message is: {0}', err.message || err));
/* __GDPR__
"error" : {
"message": { "endPoint": "none", "classification": "CustomerContent", "purpose": "PerformanceAndHealth" }
"message": { "classification": "CustomerContent", "purpose": "PerformanceAndHealth" }
}
*/
this.logTelemetry('error', { message: err.message });
@@ -414,7 +414,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
this.error(`TSServer exited with code: ${code}`);
/* __GDPR__
"tsserver.exitWithCode" : {
"code" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
"code" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
}
*/
this.logTelemetry('tsserver.exitWithCode', { code: code });
@@ -853,9 +853,9 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
}
/* __GDPR__
"typingsInstalled" : {
"installedPackages" : { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" },
"installSuccess": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"typingsInstallerVersion": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
"installedPackages" : { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" },
"installSuccess": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"typingsInstallerVersion": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
}
*/
// GDPR__COMMENT: Other events are defined by TypeScript.