Browse Source

Reduce warnings

Send packet errors are usually related to user disconnections.
pull/152/head
Mauro 4 years ago committed by GitHub
parent
commit
1e7d2c6cdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      protocol/hls/source.go

2
protocol/hls/source.go

@ -58,7 +58,7 @@ func NewSource(info av.Info) *Source { @@ -58,7 +58,7 @@ func NewSource(info av.Info) *Source {
go func() {
err := s.SendPacket()
if err != nil {
log.Warning("send packet error: ", err)
log.Debug("send packet error: ", err)
s.closed = true
}
}()

Loading…
Cancel
Save