1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 02:52:41 +01:00
Radarr/NzbDrone.Common/ExceptioneerTarget.cs

30 lines
978 B
C#
Raw Normal View History

2011-10-17 06:09:43 +02:00
using System.Diagnostics;
using Exceptioneer.WindowsFormsClient;
using NLog;
using NLog.Targets;
2011-10-24 07:54:09 +02:00
namespace NzbDrone.Common
{
public class ExceptioneerTarget : Target
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
protected override void Write(LogEventInfo logEvent)
{
2011-10-17 06:09:43 +02:00
if (logEvent == null || logEvent.Exception == null) return;
if (Debugger.IsAttached || Process.GetCurrentProcess().ProcessName.Contains("JetBrains")) return;
2011-10-17 21:23:34 +02:00
2011-11-14 07:01:51 +01:00
Logger.Trace("Sending Exception to Exceptioneer. Process Name: {0}", Process.GetCurrentProcess().ProcessName);
2011-10-17 06:09:43 +02:00
2011-10-17 21:23:34 +02:00
logEvent.Exception.Data.Add("Message", logEvent.Message);
2011-10-17 06:09:43 +02:00
new Client
{
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
2011-11-08 18:48:34 +01:00
ApplicationName = "NzbDrone",
2011-10-17 06:09:43 +02:00
CurrentException = logEvent.Exception
}.Submit();
}
}
}