diff --git a/npbackup/core/runner.py b/npbackup/core/runner.py index e78aafb0..087aa0e5 100644 --- a/npbackup/core/runner.py +++ b/npbackup/core/runner.py @@ -609,8 +609,8 @@ def backup(self, force: bool = False) -> bool: if pre_exec_failure_is_fatal: return False else: - logger.debug( - "Pre-execution of command {} success with\n{}.".format( + logger.info( + "Pre-execution of command {} success with:\n{}.".format( pre_exec_command, output ) ) @@ -646,8 +646,8 @@ def backup(self, force: bool = False) -> bool: if post_exec_failure_is_fatal: return False else: - logger.debug( - "Post-execution of command {} success with\n{}.".format( + logger.info( + "Post-execution of command {} success with:\n{}.".format( post_exec_command, output ) )