Major logging overhaul

This commit is contained in:
Mark McDowall
2014-03-13 13:12:42 -07:00
parent 953024cd40
commit 2f3430387e
102 changed files with 284 additions and 238 deletions

View File

@@ -5,6 +5,7 @@ using NLog;
using NzbDrone.Common;
using NzbDrone.Core.Indexers.Exceptions;
using NzbDrone.Core.IndexerSearch.Definitions;
using NzbDrone.Core.Instrumentation.Extensions;
using NzbDrone.Core.Parser.Model;
using System.Linq;
@@ -115,7 +116,7 @@ namespace NzbDrone.Core.Indexers
{
try
{
_logger.Trace("Downloading Feed " + url);
_logger.CleansedDebug("Downloading Feed " + url);
var xml = _httpProvider.DownloadString(url);
if (!string.IsNullOrWhiteSpace(xml))
{