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 committed Apr 26, 2024
1 parent a0883e0 commit a3b9549
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 @@ -2295,7 +2295,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 a3b9549

Please sign in to comment.