Skip to content

Commit d28b8fc

Browse files
committed
Merge remote-tracking branch 'origin/connor4312/inline-remote-resolver' into connor4312/inline-remote-resolver
2 parents f76fd4f + cf93b3f commit d28b8fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/services/extensions/common/abstractExtensionService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,13 +574,13 @@ export abstract class AbstractExtensionService extends Disposable implements IEx
574574
const sw = StopWatch.create(false);
575575
this._logService.info(`Invoking resolveAuthority(${authorityPrefix})...`);
576576
try {
577-
performance.mark(`code/willResolveAuthority/${authorityPrefix}`);
577+
perf.mark(`code/willResolveAuthority/${authorityPrefix}`);
578578
const result = await this._resolveAuthority(remoteAuthority);
579-
performance.mark(`code/didResolveAuthorityOK/${authorityPrefix}`);
579+
perf.mark(`code/didResolveAuthorityOK/${authorityPrefix}`);
580580
this._logService.info(`resolveAuthority(${authorityPrefix}) returned '${result.authority.connectTo}' after ${sw.elapsed()} ms`);
581581
return result;
582582
} catch (err) {
583-
performance.mark(`code/didResolveAuthorityError/${authorityPrefix}`);
583+
perf.mark(`code/didResolveAuthorityError/${authorityPrefix}`);
584584
this._logService.error(`resolveAuthority(${authorityPrefix}) returned an error after ${sw.elapsed()} ms`, err);
585585
throw err;
586586
}

0 commit comments

Comments
 (0)