1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Removed redundant logging.

This commit is contained in:
Taloth Saldono 2016-04-09 12:16:15 +02:00
parent 8a6d1ef373
commit ac14444d34
2 changed files with 0 additions and 4 deletions

View File

@ -180,8 +180,6 @@ private T ProcessRequest<T>(NzbgetSettings settings, string method, params objec
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)

View File

@ -175,8 +175,6 @@ private string ProcessRequest(HttpRequestBuilder requestBuilder, SabnzbdSettings
throw new DownloadClientException("Unable to connect to SABnzbd, please check your settings", ex);
}
_logger.Trace("Response: {0}", response.Content);
CheckForError(response);
return response.Content;