Skip to content

Commit

Permalink
[core] Decreased SND drop request log level to Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko committed Feb 14, 2022
1 parent c885ed1 commit 0c5bf7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srtcore/buffer_rcv.cpp
Expand Up @@ -244,8 +244,8 @@ void CRcvBufferNew::dropMessage(int32_t seqnolo, int32_t seqnohi, int32_t msgno)
const int offset_b = CSeqNo::seqoff(m_iStartSeqNo, seqnohi);
if (offset_b < 0)
{
LOGC(rbuflog.Warn, log << "CRcvBufferNew.dropMessage(): nothing to drop. Requested [" << seqnolo << "; "
<< seqnohi << "]. Buffer start " << m_iStartSeqNo << ".");
LOGC(rbuflog.Debug, log << "CRcvBufferNew.dropMessage(): nothing to drop. Requested [" << seqnolo << "; "
<< seqnohi << "]. Buffer start " << m_iStartSeqNo << ".");
return;
}

Expand Down

0 comments on commit 0c5bf7a

Please sign in to comment.