cli: Small visual improvement when syncing

This commit is contained in:
cloudhead 2024-01-19 17:09:07 +01:00
parent 7b3d380ceb
commit dc8561847d
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ fn sync(
node::AnnounceEvent::Announced => ControlFlow::Continue(()),
node::AnnounceEvent::RefsSynced { remote } => {
replicated.insert(remote);
spinner.message(format!("Synced with {remote}.."));
spinner.message(format!("Synced with {}..", cli::format::dim(remote)));
ControlFlow::Continue(())
}
},