Remove stray log statement when contacts are updated

Co-Authored-By: Max Brunsfeld <max@zed.dev>
This commit is contained in:
Antonio Scandurra 2022-06-22 19:40:52 +02:00
parent 49addc9937
commit 48ff443d10

View File

@ -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);