Skip to content

Commit b4c32f1

Browse files
committed
Remove unwanted logs
1 parent 5e19ac1 commit b4c32f1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/test/standardTest.node.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ async function installPythonExtension(vscodeExecutablePath: string, extensionsDi
9393
console.info('Python Extension not required');
9494
return;
9595
}
96-
console.info(`Installing Python Extension ${PythonExtension} to ${extensionsDir}`);
9796
const cliPath = resolveCliPathFromVSCodeExecutablePath(vscodeExecutablePath, platform);
9897
await installExtension(PythonExtension, cliPath, extensionsDir, ['--pre-release']);
9998

@@ -106,7 +105,6 @@ async function installPythonExtension(vscodeExecutablePath: string, extensionsDi
106105

107106
// Make sure renderers is there too as we'll use it for widget tests
108107
async function installExtension(extension: string, cliPath: string, extensionsDir: string, args: string[] = []) {
109-
console.info(`Installing ${extension} Extension to ${extensionsDir}`);
110108
args = ['--install-extension', extension, ...args, '--extensions-dir', extensionsDir, '--disable-telemetry'];
111109
const output =
112110
process.platform === 'win32'

0 commit comments

Comments
 (0)