diff --git a/Orange/canvas/application/addons.py b/Orange/canvas/application/addons.py index 1a24bc7b091..2c15bd7dfd1 100644 --- a/Orange/canvas/application/addons.py +++ b/Orange/canvas/application/addons.py @@ -886,11 +886,11 @@ def _find_conda(self): return conda def install(self, pkg): - cmd = ["conda", "install", "--yes", pkg.name] + cmd = ["conda", "install", "--yes", "--quiet", pkg.name] run_command(cmd, raise_on_fail=False) def upgrade(self, pkg): - cmd = ["conda", "upgrade", "--yes", pkg.name] + cmd = ["conda", "upgrade", "--yes", "--quiet", pkg.name] run_command(cmd, raise_on_fail=False) def uninstall(self, dist): @@ -932,6 +932,7 @@ def run_command(command, raise_on_fail=True): if process.returncode != 0: log.info("Command %s failed with %s", " ".join(command), process.returncode) + log.debug("Output:\n%s", "\n".join(output)) if raise_on_fail: raise CommandFailed(command, process.returncode, output)