clean up logs and imports (#400)

This commit is contained in:
David Colburn
2022-02-03 14:20:19 -07:00
committed by GitHub
parent 7297a57f3d
commit 7bbd238188
24 changed files with 44 additions and 40 deletions
+2 -2
View File
@@ -204,7 +204,7 @@ func NewRTCClient(conn *websocket.Conn) (*RTCClient, error) {
c.publisher.OnOffer(c.onOffer)
c.subscriber.PeerConnection().OnICEConnectionStateChange(func(connectionState webrtc.ICEConnectionState) {
logger.Infow("subscriber ICE state has changed", "state", connectionState.String(),
logger.Debugw("subscriber ICE state has changed", "state", connectionState.String(),
"participant", c.localParticipant.Identity)
if connectionState == webrtc.ICEConnectionStateConnected {
// flush peers
@@ -571,7 +571,7 @@ func (c *RTCClient) GetPublishedTrackIDs() []string {
c.lock.Lock()
defer c.lock.Unlock()
var trackIDs []string
for key, _ := range c.localTracks {
for key := range c.localTracks {
trackIDs = append(trackIDs, key)
}
return trackIDs
+3 -3
View File
@@ -53,7 +53,7 @@ func (w *TrackWriter) Start() error {
return err
}
logger.Infow("starting track writer",
logger.Debugw("starting track writer",
"track", w.track.ID(),
"mime", w.mime)
switch w.mime {
@@ -110,7 +110,7 @@ func (w *TrackWriter) writeOgg() {
}
pageData, pageHeader, err := w.ogg.ParseNextPage()
if err == io.EOF {
logger.Infow("all audio samples parsed and sent")
logger.Debugw("all audio samples parsed and sent")
w.onWriteComplete()
return
}
@@ -144,7 +144,7 @@ func (w *TrackWriter) writeVP8() {
}
frame, _, err := w.ivf.ParseNextFrame()
if err == io.EOF {
logger.Infow("all video frames parsed and sent")
logger.Debugw("all video frames parsed and sent")
w.onWriteComplete()
return
}