From a37a2d64fe6a573ad0eba6c29b4e8f95c83a9d18 Mon Sep 17 00:00:00 2001 From: David Chen Date: Fri, 17 Jul 2026 14:10:07 -0700 Subject: [PATCH] revert log additions --- pkg/rtc/participant.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/rtc/participant.go b/pkg/rtc/participant.go index f1c4ff7a3..faaf49643 100644 --- a/pkg/rtc/participant.go +++ b/pkg/rtc/participant.go @@ -3289,8 +3289,6 @@ func (p *ParticipantImpl) mediaTrackReceived( if newTrack { go func() { trackInfo := mt.ToProto() - packetTrailerFeatures := trackInfo.GetPacketTrailerFeatures() - packetTrailerEnabled := mt.Kind() == livekit.TrackType_VIDEO && len(packetTrailerFeatures) > 0 // TODO: remove this after we know where the high delay is coming from if pubTime > 3*time.Second { @@ -3302,8 +3300,6 @@ func (p *ParticipantImpl) mediaTrackReceived( "rid", track.RID(), "mime", track.Codec().MimeType, "isMigrated", isMigrated, - "packetTrailerEnabled", packetTrailerEnabled, - "packetTrailerFeatures", packetTrailerFeatures, ) } else { p.pubLogger.Debugw( @@ -3312,8 +3308,6 @@ func (p *ParticipantImpl) mediaTrackReceived( "track", logger.Proto(trackInfo), "cost", pubTime.Milliseconds(), "isMigrated", isMigrated, - "packetTrailerEnabled", packetTrailerEnabled, - "packetTrailerFeatures", packetTrailerFeatures, ) }