mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
28 lines
785 B
C#
28 lines
785 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using Exceptioneer.WindowsFormsClient;
|
|
using NLog;
|
|
using NLog.Targets;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public class ExceptioneerTarget : Target
|
|
{
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
{
|
|
if (!Debugger.IsAttached)
|
|
{
|
|
Logger.Trace("Sending Exception to Exceptioneer");
|
|
|
|
new Client
|
|
{
|
|
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
|
|
ApplicationName = "NZBDrone",
|
|
CurrentException = logEvent.Exception
|
|
}.Submit();
|
|
}
|
|
}
|
|
}
|
|
} |