diff --git a/fdroidserver/common.py b/fdroidserver/common.py index a5913754..e2e64ceb 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1585,11 +1585,10 @@ def FDroidPopen(commands, cwd=None, shell=False, output=True): :returns: A PopenResult. """ - if output: - if cwd: - cwd = os.path.normpath(cwd) - logging.info("Directory: %s" % cwd) - logging.info("> %s" % ' '.join(commands)) + if cwd: + cwd = os.path.normpath(cwd) + logging.debug("Directory: %s" % cwd) + logging.debug("> %s" % ' '.join(commands)) result = PopenResult() p = subprocess.Popen(commands, cwd=cwd, shell=shell,