From 11aa82832f9abd10650fa8d48632a7c60bb7214b Mon Sep 17 00:00:00 2001 From: Icer Addis Date: Mon, 13 Jan 2014 21:25:03 -0800 Subject: [PATCH] Added using statement --- src/NzbDrone.Common/Instrumentation/LogTargets.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/Instrumentation/LogTargets.cs b/src/NzbDrone.Common/Instrumentation/LogTargets.cs index 6f35a8a95..ec21d2b5c 100644 --- a/src/NzbDrone.Common/Instrumentation/LogTargets.cs +++ b/src/NzbDrone.Common/Instrumentation/LogTargets.cs @@ -1,4 +1,5 @@ using System; +using System.Diagnostics; using System.IO; using NLog; using NLog.Config; @@ -15,7 +16,7 @@ namespace NzbDrone.Common.Instrumentation LogManager.Configuration = new LoggingConfiguration(); - if (System.Diagnostics.Debugger.IsAttached) + if (Debugger.IsAttached) { RegisterDebugger(); }