@@ -25,7 +25,7 @@ import { ExtensionIdentifier, IExtensionDescription } from 'vs/platform/extensio
2525import { Schemas } from 'vs/base/common/network' ;
2626import { VSBuffer } from 'vs/base/common/buffer' ;
2727import { ExtensionMemento } from 'vs/workbench/api/common/extHostMemento' ;
28- import { RemoteAuthorityResolverError , ExtensionExecutionContext } from 'vs/workbench/api/common/extHostTypes' ;
28+ import { RemoteAuthorityResolverError } from 'vs/workbench/api/common/extHostTypes' ;
2929import { ResolvedAuthority , ResolvedOptions } from 'vs/platform/remote/common/remoteAuthorityResolver' ;
3030import { IInstantiationService , createDecorator } from 'vs/platform/instantiation/common/instantiation' ;
3131import { IExtHostInitDataService } from 'vs/workbench/api/common/extHostInitDataService' ;
@@ -361,8 +361,7 @@ export abstract class AbstractExtHostExtensionService implements ExtHostExtensio
361361 get storagePath ( ) { return that . _storagePath . workspaceValue ( extensionDescription ) ; } ,
362362 get globalStoragePath ( ) { return that . _storagePath . globalValue ( extensionDescription ) ; } ,
363363 asAbsolutePath : ( relativePath : string ) => { return path . join ( extensionDescription . extensionLocation . fsPath , relativePath ) ; } ,
364- get logPath ( ) { return path . join ( that . _initData . logsLocation . fsPath , extensionDescription . identifier . value ) ; } ,
365- executionContext : this . _initData . remote . isRemote ? ExtensionExecutionContext . Remote : ExtensionExecutionContext . Local ,
364+ get logPath ( ) { return path . join ( that . _initData . logsLocation . fsPath , extensionDescription . identifier . value ) ; }
366365 } ) ;
367366 } ) ;
368367 }
0 commit comments