mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 23:23:21 +00:00
Additional Logging for rTorrent
This commit is contained in:
parent
ea37bc2cb7
commit
a2e8d1d5d6
1 changed files with 3 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
using CookComputing.XmlRpc;
|
using CookComputing.XmlRpc;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common.Extensions;
|
using NzbDrone.Common.Extensions;
|
||||||
|
using NzbDrone.Common.Serializer;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Download.Clients.RTorrent
|
namespace NzbDrone.Core.Download.Clients.RTorrent
|
||||||
{
|
{
|
||||||
|
@ -88,6 +89,8 @@ public List<RTorrentTorrent> GetTorrents(RTorrentSettings settings)
|
||||||
"d.is_active=", // long
|
"d.is_active=", // long
|
||||||
"d.complete=")); //long
|
"d.complete=")); //long
|
||||||
|
|
||||||
|
_logger.Trace(ret.ToJson());
|
||||||
|
|
||||||
var items = new List<RTorrentTorrent>();
|
var items = new List<RTorrentTorrent>();
|
||||||
|
|
||||||
foreach (object[] torrent in ret)
|
foreach (object[] torrent in ret)
|
||||||
|
|
Loading…
Reference in a new issue