From 099d197f145c347412ea94dd6b3092ec139f9a5b Mon Sep 17 00:00:00 2001 From: Eden Abitbol <eden.abitbol@savoirfairelinux.com> Date: Tue, 6 Aug 2019 17:49:57 -0400 Subject: [PATCH] jamiaccount: cleanup Change-Id: I5ad8f7293fda713e91342a16de463750697c83e6 --- src/jamidht/jamiaccount.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jamidht/jamiaccount.cpp b/src/jamidht/jamiaccount.cpp index 609d0bad6a..a31d83b2a5 100644 --- a/src/jamidht/jamiaccount.cpp +++ b/src/jamidht/jamiaccount.cpp @@ -3161,11 +3161,11 @@ JamiAccount::updateContact(const dht::InfoHash& id, const Contact& contact) bool stateChanged {false}; auto c = contacts_.find(id); if (c == contacts_.end()) { - JAMI_DBG("[Account %s] new contact: %s", getAccountID().c_str(), id.toString().c_str()); + //JAMI_DBG("[Account %s] new contact: %s", getAccountID().c_str(), id.toString().c_str()); c = contacts_.emplace(id, contact).first; stateChanged = c->second.isActive() or c->second.isBanned(); } else { - JAMI_DBG("[Account %s] updated contact: %s", getAccountID().c_str(), id.toString().c_str()); + //JAMI_DBG("[Account %s] updated contact: %s", getAccountID().c_str(), id.toString().c_str()); stateChanged = c->second.update(contact); } if (stateChanged) { -- GitLab