From 3055b90178888bad44d6d6449388ddb4552359ab Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 6 Jan 2015 07:12:17 -0800 Subject: [PATCH] Log where the torrent request is being redirected to --- src/NzbDrone.Core/Download/TorrentClientBase.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Download/TorrentClientBase.cs b/src/NzbDrone.Core/Download/TorrentClientBase.cs index 475c7af37..824d9bb2e 100644 --- a/src/NzbDrone.Core/Download/TorrentClientBase.cs +++ b/src/NzbDrone.Core/Download/TorrentClientBase.cs @@ -102,6 +102,8 @@ namespace NzbDrone.Core.Download { var locationHeader = (string)response.Headers.GetValueOrDefault("Location", null); + _logger.Trace("Torrent request is being redirected to: {0}", locationHeader); + if (locationHeader != null) { if (locationHeader.StartsWith("magnet:"))