From a2e8d1d5d6b0b93f8681a983b62e3382ed806a4f Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 10 Sep 2020 00:01:55 -0400 Subject: [PATCH] Additional Logging for rTorrent --- src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs index 39f4d2cc2..a3a05efd2 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentProxy.cs @@ -4,6 +4,7 @@ using System.Net; using CookComputing.XmlRpc; using NLog; using NzbDrone.Common.Extensions; +using NzbDrone.Common.Serializer; namespace NzbDrone.Core.Download.Clients.RTorrent { @@ -88,6 +89,8 @@ namespace NzbDrone.Core.Download.Clients.RTorrent "d.is_active=", // long "d.complete=")); //long + _logger.Trace(ret.ToJson()); + var items = new List(); foreach (object[] torrent in ret)