diff --git a/pkg/sfu/rtpstats/rtpstats_receiver.go b/pkg/sfu/rtpstats/rtpstats_receiver.go index 8576fc278..5b8cffbbf 100644 --- a/pkg/sfu/rtpstats/rtpstats_receiver.go +++ b/pkg/sfu/rtpstats/rtpstats_receiver.go @@ -856,10 +856,10 @@ func (r lockedRTPStatsReceiverLogEncoder) MarshalLogObject(e zapcore.ObjectEncod e.AddInt("largeJumpNegativeCount", r.largeJumpNegativeCount) e.AddInt("timeReversedCount", r.timeReversedCount) - e.AddInt("packetsDroppedBadTimestamp", r.packetsDroppedPreStartTimestamp) + e.AddInt("packetsDroppedPreStartTimestamp", r.packetsDroppedPreStartTimestamp) e.AddInt("packetsDroppedOldTimestamp", r.packetsDroppedOldTimestamp) + e.AddInt("packetsDroppedPreStartSequenceNumber", r.packetsDroppedPreStartSequenceNumber) e.AddInt("packetsDroppedOldSequenceNumber", r.packetsDroppedOldSequenceNumber) - e.AddInt("packetsDroppedBadSequenceNumber", r.packetsDroppedPreStartSequenceNumber) e.AddArray("restartPackets", logger.ObjectSlice(r.restartPackets)) return nil diff --git a/pkg/sfu/rtpstats/rtpstats_receiver_test.go b/pkg/sfu/rtpstats/rtpstats_test.go similarity index 100% rename from pkg/sfu/rtpstats/rtpstats_receiver_test.go rename to pkg/sfu/rtpstats/rtpstats_test.go