File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/client/common/process Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -158,15 +158,20 @@ export class PythonExecutionFactory implements IPythonExecutionFactory {
158158 pythonPath : string ,
159159 processService : IProcessService ,
160160 ) : Promise < IPythonExecutionService | undefined > {
161+ console . log ( 'EJFB, inside createCES' ) ;
161162 const condaLocatorService = this . serviceContainer . get < IComponentAdapter > ( IComponentAdapter ) ;
163+ console . log ( 'EJFB, 5.1' ) ;
162164 const [ condaEnvironment ] = await Promise . all ( [ condaLocatorService . getCondaEnvironment ( pythonPath ) ] ) ;
165+ console . log ( 'EJFB, 5.2' ) ;
163166 if ( ! condaEnvironment ) {
164167 return undefined ;
165168 }
169+ console . log ( 'EJFB,5.3' ) ;
166170 const env = await createCondaEnv ( condaEnvironment , processService , this . fileSystem ) ;
167171 if ( ! env ) {
168172 return undefined ;
169173 }
174+ console . log ( 'EJFB, 5.4' ) ;
170175 return createPythonService ( processService , env ) ;
171176 }
172177
You can’t perform that action at this time.
0 commit comments