Skip to content

Commit 33e4706

Browse files
committed
Modified format of starting and ending backup messages
1 parent 5e80808 commit 33e4706

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ fn main() -> io::Result<()> {
113113

114114
log_output(
115115
&format!(
116-
"{}\n {}\n{}\n {}",
116+
"{} {} {} {}\n\n",
117117
msg.starting_backup,
118118
source.display(),
119119
msg.to,
@@ -134,7 +134,7 @@ fn main() -> io::Result<()> {
134134
)?;
135135

136136
log_output(
137-
msg.backup_ended.as_str(),
137+
format!("\n\n{}", msg.backup_ended.as_str()).as_str(),
138138
&logger,
139139
args.quiet,
140140
args.timestamp,

0 commit comments

Comments
 (0)