You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
978 B
30 lines
978 B
using System.Diagnostics;
|
|
using Exceptioneer.WindowsFormsClient;
|
|
using NLog;
|
|
using NLog.Targets;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public class ExceptioneerTarget : Target
|
|
{
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
{
|
|
if (logEvent == null || logEvent.Exception == null) return;
|
|
if (Debugger.IsAttached || Process.GetCurrentProcess().ProcessName.Contains("JetBrains")) return;
|
|
|
|
Logger.Trace("Sending Exception to Exceptioneer. Process Name: {0}", Process.GetCurrentProcess().ProcessName);
|
|
|
|
logEvent.Exception.Data.Add("Message", logEvent.Message);
|
|
|
|
new Client
|
|
{
|
|
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
|
|
ApplicationName = "NzbDrone",
|
|
CurrentException = logEvent.Exception
|
|
}.Submit();
|
|
|
|
}
|
|
}
|
|
} |