Reduce log noise due to uTP connection timeouts
This commit is contained in:
parent
005ca8124a
commit
5014b62e17
|
@ -681,6 +681,9 @@ func doDial(dial func(addr string, t *torrent) (net.Conn, error), ch chan dialRe
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if utp && err.Error() == "timed out waiting for ack" {
|
||||||
|
return
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("error dialing %s: %s", addr, err)
|
log.Printf("error dialing %s: %s", addr, err)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue