mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 02:48:30 -05:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user