Print stats

This commit is contained in:
Alex 2021-04-05 20:42:46 +02:00
parent fa11cb746a
commit c5d8dc7d6d
No known key found for this signature in database
GPG Key ID: EDABF9711E244EB1
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,6 @@ impl System {
async fn update_status(self: &Arc<Self>, updaters: &Updaters, status: Status) {
if status.hash != self.status.borrow().hash {
info!("Persisting new peer list");
let mut list = status.to_serializable_membership(&self);
@ -669,6 +668,7 @@ impl System {
}
if list.len() > 0 {
info!("Persisting new peer list ({} peers)", list.len());
self.persist_status
.save_async(&list)
.await