From f3caca48f2266f9bb4ca896e91280e8ec7e8c81d Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Tue, 26 Sep 2023 19:17:00 +0200 Subject: [PATCH] transfer output is now in the form of source -> target --- zfs_autobackup/ZfsDataset.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zfs_autobackup/ZfsDataset.py b/zfs_autobackup/ZfsDataset.py index 7a5b83c..b678354 100644 --- a/zfs_autobackup/ZfsDataset.py +++ b/zfs_autobackup/ZfsDataset.py @@ -728,14 +728,14 @@ class ZfsDataset: self.debug("Transfer snapshot to {}".format(target_snapshot.filesystem_name)) if resume_token: - target_snapshot.verbose("resuming") + self.verbose("resuming") # initial or increment if not prev_snapshot: - target_snapshot.verbose("<- {} (new)".format(self.filesystem_name)) + self.verbose("-> {} (new)".format(target_snapshot.filesystem_name)) else: # incremental - target_snapshot.verbose("<- {}".format(self.filesystem_name)) + self.verbose("-> {}".format(target_snapshot.filesystem_name)) # do it pipe = self.send_pipe(features=features, show_progress=show_progress, prev_snapshot=prev_snapshot,