2010-10-24 07:46:58 +00: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 05:03:05 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
|
|
|
{
|
|
|
|
|
if (!Debugger.IsAttached)
|
|
|
|
|
{
|
2011-07-04 05:03:05 +00:00
|
|
|
|
Logger.Trace("Sending Exception to Exceptioneer");
|
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
new Client
|
2011-04-10 02:44:01 +00:00
|
|
|
|
{
|
|
|
|
|
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
|
|
|
|
|
ApplicationName = "NZBDrone",
|
|
|
|
|
CurrentException = logEvent.Exception
|
|
|
|
|
}.Submit();
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|