Skip to content

Commit 6632120

Browse files
authored
{Extension} Remove verbose log in pip (#30553)
1 parent ba3fc8d commit 6632120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/azure-cli-core/azure/cli/core/extension/operations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848
def _run_pip(pip_exec_args, extension_path=None):
49-
cmd = [sys.executable, '-m', 'pip'] + pip_exec_args + ['-vv', '--disable-pip-version-check', '--no-cache-dir']
49+
cmd = [sys.executable, '-m', 'pip'] + pip_exec_args + ['--disable-pip-version-check', '--no-cache-dir']
5050
logger.debug('Running: %s', cmd)
5151
try:
5252
log_output = check_output(cmd, stderr=STDOUT, universal_newlines=True)

0 commit comments

Comments
 (0)