mirror of https://github.com/Radarr/Radarr
Removed redundant logging.
This commit is contained in:
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);
|
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);
|
var result = Json.Deserialize<JsonRpcResponse<T>>(response.Content);
|
||||||
|
|
||||||
if (result.Error != null)
|
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);
|
throw new DownloadClientException("Unable to connect to SABnzbd, please check your settings", ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger.Trace("Response: {0}", response.Content);
|
|
||||||
|
|
||||||
CheckForError(response);
|
CheckForError(response);
|
||||||
|
|
||||||
return response.Content;
|
return response.Content;
|
||||||
|
|
Loading…
Reference in New Issue