瀏覽代碼

Removing debugging command output.

Dan Helfman 2 年之前
父節點
當前提交
acbbd6670a
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      borgmatic/execute.py

+ 0 - 2
borgmatic/execute.py

@@ -235,12 +235,10 @@ def execute_command_and_capture_output(
             env=environment,
             cwd=working_directory,
         )
-        logger.warning(f'Command output: {output}')
     except subprocess.CalledProcessError as error:
         if exit_code_indicates_error(command, error.returncode):
             raise
         output = error.output
-        logger.warning(f'Command output: {output}')
 
     return output.decode() if output is not None else None