mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
Fixes #138804: Improve logging to contain also the extension id
This commit is contained in:
@@ -317,6 +317,7 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme
|
||||
});
|
||||
}
|
||||
} catch (err) {
|
||||
this._logService.error(`An error occurred when deactivating the extension '${extensionId.value}':`);
|
||||
this._logService.error(err);
|
||||
}
|
||||
|
||||
@@ -324,6 +325,7 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme
|
||||
try {
|
||||
dispose(extension.subscriptions);
|
||||
} catch (err) {
|
||||
this._logService.error(`An error occurred when deactivating the subscriptions for extension '${extensionId.value}':`);
|
||||
this._logService.error(err);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user