diff --git a/daemon/src/sip/sdp.cpp b/daemon/src/sip/sdp.cpp
index 3eb0739709a317859ee8a0a3b1195d0171aaf78b..76ab9c86221538b29d54980b3f63c2bfb293096a 100644
--- a/daemon/src/sip/sdp.cpp
+++ b/daemon/src/sip/sdp.cpp
@@ -408,7 +408,6 @@ void Sdp::getRemoteSdpCryptoFromOffer(const pjmedia_sdp_session* remote_sdp, Cry
             pjmedia_sdp_attr *attribute = media->attr[j];
 
             // @TODO our parser require the "a=crypto:" to be present
-            ERROR("    attribute %s", pj_strbuf(&attribute->name));
             if (pj_stricmp2(&attribute->name, "crypto") == 0)
                 crypto_offer.push_back("a=crypto:" + std::string(attribute->value.ptr, attribute->value.slen));
         }