Skip to content

Commit

Permalink
hotfix: move from warning to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricve committed Jan 3, 2024
1 parent 1f133af commit 4bc891b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions machinery/src/capture/Gortsplib.go
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ func (g *Golibrtsp) Start(ctx context.Context, queue *packets.Queue, configurati
// decode timestamp
pts, ok := g.Client.PacketPTS(g.AudioG711Media, rtppkt)
if !ok {
log.Log.Warning("capture.golibrtsp.Start(): " + "unable to get PTS")
log.Log.Debug("capture.golibrtsp.Start(): " + "unable to get PTS")
return
}

Expand Down Expand Up @@ -443,7 +443,7 @@ func (g *Golibrtsp) Start(ctx context.Context, queue *packets.Queue, configurati
// decode timestamp
pts, ok := g.Client.PacketPTS(g.VideoH264Media, rtppkt)
if !ok {
log.Log.Warning("capture.golibrtsp.Start(): " + "unable to get PTS")
log.Log.Debug("capture.golibrtsp.Start(): " + "unable to get PTS")
return
}

Expand Down Expand Up @@ -554,7 +554,7 @@ func (g *Golibrtsp) Start(ctx context.Context, queue *packets.Queue, configurati
// decode timestamp
pts, ok := g.Client.PacketPTS(g.VideoH265Media, rtppkt)
if !ok {
log.Log.Warning("capture.golibrtsp.Start(): " + "unable to get PTS")
log.Log.Debug("capture.golibrtsp.Start(): " + "unable to get PTS")
return
}

Expand Down

0 comments on commit 4bc891b

Please sign in to comment.