Removed redundant logging.

pull/3113/head
Taloth Saldono 9 years ago
parent 8a6d1ef373
commit ac14444d34

@ -180,8 +180,6 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
throw new DownloadClientException("Unable to connect to NzbGet. " + ex.Message, ex);
}
_logger.Trace("Response: {0}", response.Content);
var result = Json.Deserialize<JsonRpcResponse<T>>(response.Content);
if (result.Error != null)

@ -175,8 +175,6 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
throw new DownloadClientException("Unable to connect to SABnzbd, please check your settings", ex);
}
_logger.Trace("Response: {0}", response.Content);
CheckForError(response);
return response.Content;

Loading…
Cancel
Save