From 48ff443d106377a79e94ae5e8ddf5c5431790ba4 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 22 Jun 2022 19:40:52 +0200 Subject: [PATCH] Remove stray log statement when contacts are updated Co-Authored-By: Max Brunsfeld --- crates/client/src/user.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/client/src/user.rs b/crates/client/src/user.rs index 3dc573a8a3..5e56b53b87 100644 --- a/crates/client/src/user.rs +++ b/crates/client/src/user.rs @@ -230,11 +230,6 @@ impl UserStore { Task::ready(Ok(())) } UpdateContacts::Update(message) => { - log::info!( - "update contacts on client {}: {:?}", - self.client.upgrade().unwrap().id, - message - ); let mut user_ids = HashSet::default(); for contact in &message.contacts { user_ids.insert(contact.user_id);