Skip to content
Snippets Groups Projects
Commit 38ab04eb authored by Adrien Béraud's avatar Adrien Béraud
Browse files

call: disable unneeded logs

Change-Id: I1a9e5c02d5678c6c9057dbfd372c636406593f3f
parent 947c7d40
No related branches found
No related tags found
No related merge requests found
......@@ -130,6 +130,7 @@ randomFill(std::vector<uint8_t>& dest)
void
Sdp::setActiveLocalSdpSession(const pjmedia_sdp_session* sdp)
{
if (activeLocalSession_ != sdp)
JAMI_DBG("Set active local session to [%p]. Was [%p]", sdp, activeLocalSession_);
activeLocalSession_ = sdp;
}
......@@ -137,6 +138,7 @@ Sdp::setActiveLocalSdpSession(const pjmedia_sdp_session* sdp)
void
Sdp::setActiveRemoteSdpSession(const pjmedia_sdp_session* sdp)
{
if (activeLocalSession_ != sdp)
JAMI_DBG("Set active remote session to [%p]. Was [%p]", sdp, activeRemoteSession_);
activeRemoteSession_ = sdp;
}
......
......
......@@ -2857,6 +2857,7 @@ SIPCall::monitor() const
JAMI_DBG("\t- Video codec: %s", codec->systemCodecInfo.name.c_str());
#endif
if (auto transport = getIceMedia()) {
if (transport->isRunning())
JAMI_DBG("\t- Medias: %s", transport->link().c_str());
}
}
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment