From e2939847a5af292cad82d9565a9915f1a51dacd6 Mon Sep 17 00:00:00 2001 From: Icer Addis Date: Tue, 7 Jan 2014 04:12:55 -0800 Subject: [PATCH] Parser logging - changed Debug.WriteLine to Logger.Trace --- src/NzbDrone.Core/Parser/Parser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Parser/Parser.cs b/src/NzbDrone.Core/Parser/Parser.cs index 7797a61cd..21d88b971 100644 --- a/src/NzbDrone.Core/Parser/Parser.cs +++ b/src/NzbDrone.Core/Parser/Parser.cs @@ -153,7 +153,7 @@ namespace NzbDrone.Core.Parser if (match.Count != 0) { - Debug.WriteLine(regex); + Logger.Trace(regex); try { var result = ParseMatchCollection(match);