From e173cf2df3cfd0709f9063aaf0bee3c8d608c0ad Mon Sep 17 00:00:00 2001 From: James McDonald Date: Sun, 26 Apr 2026 12:23:46 +0200 Subject: [PATCH] Add line breaks between entries --- src/progress.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/progress.rs b/src/progress.rs index 656ecb5..f85c054 100644 --- a/src/progress.rs +++ b/src/progress.rs @@ -50,7 +50,7 @@ impl ProgressReporter { total, } => { println!( - "Starting full backup of {} to {} ({} of {})", + "\nStarting full backup of {} to {} ({} of {})", source, dest, index, total ); } @@ -61,7 +61,7 @@ impl ProgressReporter { total, } => { println!( - "Starting incremental backup of {} to {} ({} of {})", + "\nStarting incremental backup of {} to {} ({} of {})", source, dest, index, total ); }