Reduce warnings

Send packet errors are usually related to user disconnections.
This commit is contained in:
Mauro
2021-01-14 10:21:54 +01:00
committed by GitHub
parent 1e7d2c6cdb
commit e04f6fbd6e

View File

@@ -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
}