Skip to content

Commit

Permalink
more log log
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorjboyd committed Oct 31, 2024
1 parent cee6fc0 commit 752d581
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/client/common/process/pythonExecutionFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,10 @@ export class PythonExecutionFactory implements IPythonExecutionFactory {
}
console.log('EJFB, 4.10');
const windowsStoreInterpreterCheck = this.pyenvs.isMicrosoftStoreInterpreter.bind(this.pyenvs);
console.log('EJFB, 4.11');
const env = (await windowsStoreInterpreterCheck(pythonPath))
console.log('EJFB, 4.11', pythonPath);
const a = await windowsStoreInterpreterCheck(pythonPath);
console.log('EJFB, 4.11.5', a, processService, this.fileSystem);
const env = a
? createMicrosoftStoreEnv(pythonPath, processService)
: createPythonEnv(pythonPath, processService, this.fileSystem);
console.log('EJFB, 4.12');
Expand Down

0 comments on commit 752d581

Please sign in to comment.