1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00

RestExtensions log validation at trace so they don't show up in UI

This commit is contained in:
Mark McDowall 2013-08-25 17:35:11 -07:00
parent a54689fbc4
commit 6367d3d204

View File

@ -22,7 +22,7 @@ public static IRestResponse ValidateResponse(this IRestResponse response, IRestC
Ensure.That(() => response.Request).IsNotNull();
Ensure.That(() => restClient).IsNotNull();
Logger.Debug("Validating Responses from [{0}] [{1}] status: [{2}] body:[{3}]", response.Request.Method, restClient.BuildUri(response.Request), response.StatusCode, response.Content);
Logger.Trace("Validating Responses from [{0}] [{1}] status: [{2}] body:[{3}]", response.Request.Method, restClient.BuildUri(response.Request), response.StatusCode, response.Content);
if (response.ResponseUri == null)
{