From c42413866df75b7851abb70cae3d102e931c2446 Mon Sep 17 00:00:00 2001 From: Alexey Khit Date: Thu, 9 Feb 2023 07:48:11 +0300 Subject: [PATCH] Remove RTSP wrong channel ID from logs --- pkg/rtsp/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/rtsp/conn.go b/pkg/rtsp/conn.go index 40c07fd2..727c433a 100644 --- a/pkg/rtsp/conn.go +++ b/pkg/rtsp/conn.go @@ -836,7 +836,7 @@ func (c *Conn) Handle() (err error) { if track != nil { _ = track.WriteRTP(packet) } else { - c.Fire("wrong channelID: " + strconv.Itoa(int(channelID))) + //c.Fire("wrong channelID: " + strconv.Itoa(int(channelID))) } } else { msg := &RTCP{Channel: channelID}