From 4cb3d8bac7d5ec59c6476c41dc4bc5af6414a330 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 8 Oct 2017 01:18:13 -0400 Subject: [PATCH] Log responses from qbit --- .../Download/Clients/QBittorrent/QBittorrentProxy.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrentProxy.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrentProxy.cs index e00c57585..6f5412b85 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrentProxy.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrentProxy.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Net; using NLog; @@ -156,6 +156,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent AuthenticateClient(requestBuilder, settings); var request = requestBuilder.Build(); + request.LogResponseContent = true; HttpResponse response; try