From 6c34acc8b323d407bc115ad1c1fb377b5049dbec Mon Sep 17 00:00:00 2001 From: Icer Addis Date: Thu, 2 Jan 2014 19:47:21 -0800 Subject: [PATCH] NLog - fixed debugger target name --- src/NzbDrone.Common/Instrumentation/LogTargets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/Instrumentation/LogTargets.cs b/src/NzbDrone.Common/Instrumentation/LogTargets.cs index e5d1be2f0..6f35a8a95 100644 --- a/src/NzbDrone.Common/Instrumentation/LogTargets.cs +++ b/src/NzbDrone.Common/Instrumentation/LogTargets.cs @@ -47,7 +47,7 @@ namespace NzbDrone.Common.Instrumentation target.Layout = "[${level}] [${threadid}] ${logger}: ${message} ${onexception:inner=${newline}${newline}${exception:format=ToString}${newline}}"; var loggingRule = new LoggingRule("*", LogLevel.Trace, target); - LogManager.Configuration.AddTarget("console", target); + LogManager.Configuration.AddTarget("debugger", target); LogManager.Configuration.LoggingRules.Add(loggingRule); }