Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts b/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts
index c6a22cc1f1b..554cc3fc208 100644
--- a/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts
+++ b/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts
@@ -221,19 +221,6 @@ export class ExtensionsAutoProfiler implements IWorkbenchContribution {
}
this._blame.add(ExtensionIdentifier.toKey(extension.identifier));
- type UnresponsivePromptData = {
- id: string;
- };
- type UnresponsivePromptDataClassification = {
- owner: 'digitarald';
- comment: 'Users got a warning about an extension hanging the extension process';
- expiration: '1.73';
- id: { classification: 'SystemMetaData'; purpose: 'PerformanceAndHealth'; comment: 'Extension id that froze the extension process' };
- };
- this._telemetryService.publicLog2<UnresponsivePromptData, UnresponsivePromptDataClassification>('exthostunresponsiveprompt', {
- id: ExtensionIdentifier.toKey(extension.identifier),
- });
-
// user-facing message when very bad...
this._notificationService.prompt(
Severity.Warning,