File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/vs/workbench/services/extensions/common Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -574,13 +574,13 @@ export abstract class AbstractExtensionService extends Disposable implements IEx
574
574
const sw = StopWatch . create ( false ) ;
575
575
this . _logService . info ( `Invoking resolveAuthority(${ authorityPrefix } )...` ) ;
576
576
try {
577
- performance . mark ( `code/willResolveAuthority/${ authorityPrefix } ` ) ;
577
+ perf . mark ( `code/willResolveAuthority/${ authorityPrefix } ` ) ;
578
578
const result = await this . _resolveAuthority ( remoteAuthority ) ;
579
- performance . mark ( `code/didResolveAuthorityOK/${ authorityPrefix } ` ) ;
579
+ perf . mark ( `code/didResolveAuthorityOK/${ authorityPrefix } ` ) ;
580
580
this . _logService . info ( `resolveAuthority(${ authorityPrefix } ) returned '${ result . authority . connectTo } ' after ${ sw . elapsed ( ) } ms` ) ;
581
581
return result ;
582
582
} catch ( err ) {
583
- performance . mark ( `code/didResolveAuthorityError/${ authorityPrefix } ` ) ;
583
+ perf . mark ( `code/didResolveAuthorityError/${ authorityPrefix } ` ) ;
584
584
this . _logService . error ( `resolveAuthority(${ authorityPrefix } ) returned an error after ${ sw . elapsed ( ) } ms` , err ) ;
585
585
throw err ;
586
586
}
You can’t perform that action at this time.
0 commit comments