2010-10-24 09:46:58 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using Exceptioneer.WindowsFormsClient;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NLog.Targets;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
|
|
|
{
|
|
|
|
|
public class ExceptioneerTarget : Target
|
|
|
|
|
{
|
2011-07-04 07:03:05 +02:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
|
|
|
{
|
2011-10-17 05:12:48 +02:00
|
|
|
|
if (!Debugger.IsAttached && !Process.GetCurrentProcess().ProcessName.Contains("JetBrains"))
|
2010-10-24 09:46:58 +02:00
|
|
|
|
{
|
2011-10-17 05:02:20 +02:00
|
|
|
|
Logger.Trace("Sending Exception to Exceptioneer. {0}", Process.GetCurrentProcess().ProcessName);
|
2011-07-04 07:03:05 +02:00
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
new Client
|
2011-04-10 04:44:01 +02:00
|
|
|
|
{
|
|
|
|
|
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
|
|
|
|
|
ApplicationName = "NZBDrone",
|
|
|
|
|
CurrentException = logEvent.Exception
|
|
|
|
|
}.Submit();
|
2010-10-24 09:46:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|