Made SRTP start message not logged by default.

git-svn-id: http://yate.null.ro/svn/yate/trunk@6360 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2019-10-21 08:10:02 +00:00
parent 02331a839b
commit caf2ae7042
1 changed files with 1 additions and 1 deletions

View File

@ -848,7 +848,7 @@ bool YRTPWrapper::startSRTP(const String& suite, const String& keyParams, const
RTPSecure* srtp = new RTPSecure;
if (srtp->supported(m_rtp) && srtp->setup(suite,keyParams,paramList)) {
m_rtp->receiver()->security(srtp);
Debug(&splugin,DebugNote,"Started SRTP suite '%s' [%p]",suite.c_str(),this);
Debug(&splugin,DebugCall,"Started SRTP suite '%s' [%p]",suite.c_str(),this);
return true;
}
TelEngine::destruct(srtp);