Skip to content

Commit

Permalink
[core] Fixed group RCV drop sequence range log.
Browse files Browse the repository at this point in the history
A follow-up for Haivision#2934.
  • Loading branch information
maxsharabayko authored Apr 24, 2024
1 parent 882dff9 commit 8f49c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtcore/group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2319,7 +2319,7 @@ int CUDTGroup::recv(char* buf, int len, SRT_MSGCTRL& w_mc)
m_stats.recvDrop.count(stats::BytesPackets(iNumDropped * static_cast<uint64_t>(avgRcvPacketSize()), iNumDropped));
LOGC(grlog.Warn,
log << "@" << m_GroupID << " GROUP RCV-DROPPED " << iNumDropped << " packet(s): seqno %"
<< m_RcvBaseSeqNo << " to %" << w_mc.pktseq);
<< CSeqNo::incseq(m_RcvBaseSeqNo) << " to %" << CSeqNo::decseq(w_mc.pktseq));
}
}

Expand Down

0 comments on commit 8f49c44

Please sign in to comment.