From feb3972cd7f954f96bc5cea9bc796eb22eabb332 Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Tue, 26 Sep 2023 19:00:19 +0200 Subject: [PATCH] better output --- zfs_autobackup/ZfsDataset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zfs_autobackup/ZfsDataset.py b/zfs_autobackup/ZfsDataset.py index d0cbb6c..c123fe6 100644 --- a/zfs_autobackup/ZfsDataset.py +++ b/zfs_autobackup/ZfsDataset.py @@ -732,10 +732,10 @@ class ZfsDataset: # initial or increment if not prev_snapshot: - target_snapshot.verbose("receiving full".format(self.snapshot_name)) + target_snapshot.verbose("<- {} (new)".format(self.filesystem_name)) else: # incremental - target_snapshot.verbose("receiving incremental".format(self.snapshot_name)) + target_snapshot.verbose("<- {}".format(self.filesystem_name)) # do it pipe = self.send_pipe(features=features, show_progress=show_progress, prev_snapshot=prev_snapshot,