From 6367d3d204903abd3ec766d662012fcd014a4e6d Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 25 Aug 2013 17:35:11 -0700 Subject: [PATCH] RestExtensions log validation at trace so they don't show up in UI --- NzbDrone.Core/Rest/RestSharpExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Rest/RestSharpExtensions.cs b/NzbDrone.Core/Rest/RestSharpExtensions.cs index b1a1ee968..b0c09368c 100644 --- a/NzbDrone.Core/Rest/RestSharpExtensions.cs +++ b/NzbDrone.Core/Rest/RestSharpExtensions.cs @@ -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) {