Skip to content

Commit

Permalink
Log fmt field of unsupported RTCPFB packets. (jitsi#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLennox committed Feb 5, 2020
1 parent 7b68d90 commit 3b40c00
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -29,6 +29,7 @@ import org.jitsi.rtp.rtcp.RtcpRrPacket
import org.jitsi.rtp.rtcp.RtcpSdesPacket
import org.jitsi.rtp.rtcp.RtcpSrPacket
import org.jitsi.rtp.rtcp.RtcpXrPacket
import org.jitsi.rtp.rtcp.rtcpfb.UnsupportedRtcpFbPacket
import org.jitsi.rtp.rtcp.rtcpfb.payload_specific_fb.RtcpFbFirPacket
import org.jitsi.rtp.rtcp.rtcpfb.payload_specific_fb.RtcpFbPliPacket
import org.jitsi.rtp.rtcp.rtcpfb.payload_specific_fb.RtcpFbRembPacket
Expand Down Expand Up @@ -78,6 +79,9 @@ class RtcpTermination(
// message below clouds up the logs. They are still tracked as part
// of the packetReceiveCount
}
is UnsupportedRtcpFbPacket -> {
logger.cinfo { "TODO: not yet handling RTCP packet of type ${rtcpPacket.packetType} fmt ${rtcpPacket.reportCount} ${rtcpPacket.javaClass}" }
}
else -> {
logger.cinfo { "TODO: not yet handling RTCP packet of type ${rtcpPacket.packetType} ${rtcpPacket.javaClass}" }
}
Expand Down

0 comments on commit 3b40c00

Please sign in to comment.