Skip to content

Commit

Permalink
remove the log
Browse files Browse the repository at this point in the history
  • Loading branch information
tyohan committed Sep 19, 2024
1 parent 8e0743e commit 3bfcd7d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"errors"
"fmt"
"io"
"log"
"regexp"
"strings"
"sync"
Expand Down Expand Up @@ -1076,15 +1075,12 @@ func (c *Client) enableReportAndStats(rtpSender *webrtc.RTPSender, track iClient
return
}

log.Println("rtcp packets PLI", rtcpPackets)
for _, p := range rtcpPackets {
switch p.(type) {
case *rtcp.PictureLossIndication:
log.Println("rtcp packets PLI", rtcpPackets)
track.RequestPLI()
case *rtcp.FullIntraRequest:
track.RequestPLI()
log.Println("rtcp packets FullI", rtcpPackets)
}
}
}
Expand Down

0 comments on commit 3bfcd7d

Please sign in to comment.