Skip to content

Commit

Permalink
Reduce warnings
Browse files Browse the repository at this point in the history
Send packet errors are usually related to user disconnections.
  • Loading branch information
EssGeeEich authored Jan 14, 2021
1 parent 1e7d2c6 commit e04f6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/httpflv/writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func NewFLVWriter(app, title, url string, ctx http.ResponseWriter) *FLVWriter {
go func() {
err := ret.SendPacket()
if err != nil {
log.Error("SendPacket error: ", err)
log.Debug("SendPacket error: ", err)
ret.closed = true
}

Expand Down

0 comments on commit e04f6fb

Please sign in to comment.