torrent.go | 5 ++--- diff --git a/torrent.go b/torrent.go index 42a62fc1f3c99cbaa91508c97e85cd027eec930c..5f6ddf394e5684282bf4a520f7e9c5583aba6256 100644 --- a/torrent.go +++ b/torrent.go @@ -1718,10 +1718,9 @@ return } u, err := url.Parse(_url) if err != nil { - // URLs with a leading '*' appear to be a uTorrent convention to - // disable trackers. + // URLs with a leading '*' appear to be a uTorrent convention to disable trackers. if _url[0] != '*' { - log.Str("error parsing tracker url").AddValues("url", _url).Log(t.logger) + t.logger.Levelf(log.Warning, "error parsing tracker url: %v", err) } return }