Skip to content

Commit

Permalink
{Extension} Remove verbose log in pip (#30553)
Browse files Browse the repository at this point in the history
  • Loading branch information
bebound authored Dec 26, 2024
1 parent ba3fc8d commit 6632120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/azure-cli-core/azure/cli/core/extension/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@


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

0 comments on commit 6632120

Please sign in to comment.