|
|
@ -1,5 +1,4 @@
|
|
|
|
using System;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
using Exceptioneer.WindowsFormsClient;
|
|
|
|
using Exceptioneer.WindowsFormsClient;
|
|
|
|
using NLog;
|
|
|
|
using NLog;
|
|
|
|
using NLog.Targets;
|
|
|
|
using NLog.Targets;
|
|
|
@ -12,8 +11,9 @@ namespace NzbDrone.Core.Instrumentation
|
|
|
|
|
|
|
|
|
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (!Debugger.IsAttached && !Process.GetCurrentProcess().ProcessName.Contains("JetBrains"))
|
|
|
|
if (logEvent == null || logEvent.Exception == null) return;
|
|
|
|
{
|
|
|
|
if (Debugger.IsAttached || Process.GetCurrentProcess().ProcessName.Contains("JetBrains")) return;
|
|
|
|
|
|
|
|
|
|
|
|
Logger.Trace("Sending Exception to Exceptioneer. {0}", Process.GetCurrentProcess().ProcessName);
|
|
|
|
Logger.Trace("Sending Exception to Exceptioneer. {0}", Process.GetCurrentProcess().ProcessName);
|
|
|
|
|
|
|
|
|
|
|
|
new Client
|
|
|
|
new Client
|
|
|
@ -22,7 +22,7 @@ namespace NzbDrone.Core.Instrumentation
|
|
|
|
ApplicationName = "NZBDrone",
|
|
|
|
ApplicationName = "NZBDrone",
|
|
|
|
CurrentException = logEvent.Exception
|
|
|
|
CurrentException = logEvent.Exception
|
|
|
|
}.Submit();
|
|
|
|
}.Submit();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|