2011-10-17 04:09:43 +00:00
|
|
|
|
using System.Diagnostics;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
using Exceptioneer.WindowsFormsClient;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NLog.Targets;
|
|
|
|
|
|
2011-10-24 05:54:09 +00:00
|
|
|
|
namespace NzbDrone.Common
|
2010-10-24 07:46:58 +00:00
|
|
|
|
{
|
|
|
|
|
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)
|
|
|
|
|
{
|
2011-10-17 04:09:43 +00:00
|
|
|
|
if (logEvent == null || logEvent.Exception == null) return;
|
|
|
|
|
if (Debugger.IsAttached || Process.GetCurrentProcess().ProcessName.Contains("JetBrains")) return;
|
2011-10-17 19:23:34 +00:00
|
|
|
|
|
2011-10-17 04:09:43 +00:00
|
|
|
|
Logger.Trace("Sending Exception to Exceptioneer. {0}", Process.GetCurrentProcess().ProcessName);
|
|
|
|
|
|
2011-10-17 19:23:34 +00:00
|
|
|
|
logEvent.Exception.Data.Add("Message", logEvent.Message);
|
|
|
|
|
|
2011-10-17 04:09:43 +00:00
|
|
|
|
new Client
|
|
|
|
|
{
|
|
|
|
|
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
|
2011-11-08 17:48:34 +00:00
|
|
|
|
ApplicationName = "NzbDrone",
|
2011-10-17 04:09:43 +00:00
|
|
|
|
CurrentException = logEvent.Exception
|
|
|
|
|
}.Submit();
|
2011-07-04 05:03:05 +00:00
|
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|