Skip to content

Commit 566a0c6

Browse files
committed
WIP: Change logging
1 parent ef04b0c commit 566a0c6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/renderer/search_emme_pythonpath.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,11 @@ function getVersion(semver) {
113113

114114
function hasPythonEnv(basePath) {
115115
const pathExists = fs.existsSync(basePath);
116-
console.log(basePath);
117-
console.log(pathExists);
118116
let exePaths = [];
119117
if (pathExists) {
120118
try {
121119
const subPaths = fs.readdirSync(basePath)
120+
console.log(subPaths);
122121
subPaths.forEach(subPath => {
123122
if(subPath.startsWith("Emme ")) {
124123
const majorVersionFolderPath = path.join(basePath, subPath);

0 commit comments

Comments
 (0)