Prefix all performance.mark calls with code/

This commit is contained in:
Alex Dima
2021-01-11 16:11:51 +01:00
parent 64947067ab
commit cba1d1b184
9 changed files with 25 additions and 25 deletions

View File

@@ -53,9 +53,9 @@ export abstract class RequireInterceptor {
this._installInterceptor();
performance.mark('extHost/willWaitForConfig');
performance.mark('code/extHost/willWaitForConfig');
const configProvider = await this._extHostConfiguration.getConfigProvider();
performance.mark('extHost/didWaitForConfig');
performance.mark('code/extHost/didWaitForConfig');
const extensionPaths = await this._extHostExtensionService.getExtensionPathIndex();
this.register(new VSCodeNodeModuleFactory(this._apiFactory, extensionPaths, this._extensionRegistry, configProvider, this._logService));