From acbbd6670a154c79f512894c19f9e6e152544cbd Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sun, 26 Mar 2023 21:26:35 -0700 Subject: [PATCH] Removing debugging command output. --- borgmatic/execute.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/borgmatic/execute.py b/borgmatic/execute.py index 53d1a098..46dd04f3 100644 --- a/borgmatic/execute.py +++ b/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