Don't log using torrent source as warning for context cancellation
This probably occurs because the info was obtained and we don't need to try the source anymore.
This commit is contained in:
parent
42d29d95a6
commit
fdb0911e28
|
@ -2,6 +2,7 @@ package torrent
|
|||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
||||
|
@ -34,7 +35,7 @@ func (t *Torrent) UseSources(sources []string) {
|
|||
panic(s)
|
||||
}
|
||||
level := log.Debug
|
||||
if err != nil {
|
||||
if err != nil && !errors.Is(err, context.Canceled) {
|
||||
level = log.Warning
|
||||
}
|
||||
t.logger.Levelf(level, "used torrent source %q [err=%v]", s, err)
|
||||
|
|
Loading…
Reference in New Issue