From b750f6531192e0e3c52e3f2003e3478848776729 Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 13 Mar 2019 04:24:38 -0700 Subject: [PATCH] Tweak log output --- backup-rotator | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup-rotator b/backup-rotator index 1e10538..ae1b620 100755 --- a/backup-rotator +++ b/backup-rotator @@ -72,11 +72,11 @@ class BackupRotator: if arg == "--config": i, one_path = self.consume_argument_companion(i) self.__config_paths.append(one_path) - print("Found config path argument:", one_path) + self.log("Found config path argument:", one_path) elif arg == "--dry-run": self.__dry_run = True - print("Activating global dry-run mode") + self.log("Activating global dry-run mode") @staticmethod def consume_argument_companion(arg_index):