diff --git a/src/jamidht/jamiaccount.cpp b/src/jamidht/jamiaccount.cpp
index 609d0bad6aedf1360df9dddbd6d126763f0b7b38..a31d83b2a568ee35eae63b57884c69ed4eada4d6 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) {