We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8653d12 commit 70fc702Copy full SHA for 70fc702
tools/reckless
@@ -376,7 +376,11 @@ def _install_plugin(src: InstInfo) -> bool:
376
if src.deps is not None:
377
logging.debug(f'installing dependencies using {src.deps}')
378
procedure = install_methods[src.deps]
379
- pip = Popen(procedure, cwd=plugin_path, stdout=PIPE)
+ # Verbose output requested.
380
+ if logging.root.level < logging.WARNING:
381
+ pip = Popen(procedure, cwd=plugin_path)
382
+ else:
383
+ pip = Popen(procedure, cwd=plugin_path, stdout=PIPE, stderr=PIPE)
384
pip.wait()
385
if pip.returncode == 0:
386
print('dependencies installed successfully')
0 commit comments