diff --git a/src/account.cpp b/src/account.cpp
index 60744241231a0144ee591864a0223ce3687738c8..d64a6e4e865cd8f7dd227ec8bee846d2a2351e41 100644
--- a/src/account.cpp
+++ b/src/account.cpp
@@ -177,8 +177,6 @@ Account::loadDefaultCodecs()
             // instantiate AccountAudioCodecInfo initialized with our system codec
             auto codec = std::make_shared <AccountAudioCodecInfo>(*audioCodec);
             accountCodecInfoList_.push_back(codec);
-            RING_DBG("[%s] loading audio codec = %s", accountID_.c_str(),
-                     codec->systemCodecInfo.name.c_str());
         }
 
         if (systemCodec->mediaType & MEDIA_VIDEO) {
@@ -187,8 +185,6 @@ Account::loadDefaultCodecs()
             // instantiate AccountVideoCodecInfo initialized with our system codec
             auto codec = std::make_shared<AccountVideoCodecInfo>(*videoCodec);
             accountCodecInfoList_.push_back(codec);
-            RING_DBG("[%s] loading video codec = %s", accountID_.c_str(),
-                     codec->systemCodecInfo.name.c_str());
         }
     }
 }
diff --git a/src/ringdht/ringaccount.cpp b/src/ringdht/ringaccount.cpp
index 2f0518facf0c334c3861e412ebf5d3daada56121..c2f81381380fb7871388d7c77d15401017746aa9 100644
--- a/src/ringdht/ringaccount.cpp
+++ b/src/ringdht/ringaccount.cpp
@@ -1061,7 +1061,6 @@ RingAccount::matches(const std::string &userName, const std::string &server) con
         RING_DBG("Matching account id in request with username %s", userName.c_str());
         return MatchRank::FULL;
     } else {
-        RING_DBG("No match for account %s in request with username %s", dht_.getId().toString().c_str(), userName.c_str());
         return MatchRank::NONE;
     }
 }