Refresh master with initial release/0.24 snapshot (#332)

* Initial port of release/0.24 source code

* Fix additional headers

* Fix a typo in launch.json
This commit is contained in:
Karl Burtram
2017-12-15 15:38:57 -08:00
committed by GitHub
parent 271b3a0b82
commit 6ad0df0e3e
7118 changed files with 107999 additions and 56466 deletions

View File

@@ -143,6 +143,17 @@ export default class ErrorTelemetry {
private _flushBuffer(): void {
for (let error of this._buffer) {
/* __GDPR__
"UnhandledError" : {
"message" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"name": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"stack": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"id": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"line": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"column": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
}
*/
// __GDPR__TODO__ what's the complete set of properties?
this._telemetryService.publicLog('UnhandledError', error);
}
this._buffer.length = 0;