Skip to content

Commit

Permalink
rm logs from getConfigurationSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
brianignacio5 committed Nov 19, 2024
1 parent a44b6e6 commit 79ea7ec
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/support/configurationSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export async function getConfigurationSettings(
reportedResult.workspaceFolder = scope
? scope.fsPath
: "No workspace folder is open";
// const pythonVenvPath = await getVirtualEnvPythonPath(scope);
const idfToolsManager = await IdfToolsManager.createIdfToolsManager(
conf.get("idf.espIdfPath" + winFlag)
);
Expand All @@ -52,18 +51,6 @@ export async function getConfigurationSettings(
conf.get<string>("idf.pythonInstallPath")
);

console.log(
`IDF_PATH is ${conf
.get<string>("idf.espIdfPath" + winFlag)
.replace("${env:IDF_PATH}", process.env.IDF_PATH)}`
);
console.log(
`IDF_TOOLS_PATH is ${conf
.get<string>("idf.toolsPath" + winFlag)
.replace("${env:IDF_TOOLS_PATH}", process.env.IDF_TOOLS_PATH)}`
);
console.log(`Python path is ${pythonVenvPath}`);

const idfToolsExportVars = await getEnvVarsFromIdfTools(
conf
.get<string>("idf.espIdfPath" + winFlag)
Expand Down

0 comments on commit 79ea7ec

Please sign in to comment.