1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00
Sonarr/NzbDrone.Common/ExceptioneerTarget.cs

34 lines
1.1 KiB
C#
Raw Normal View History

2012-01-19 22:12:07 -08:00
using System;
using System.Diagnostics;
using Exceptioneer.WindowsFormsClient;
using NLog;
using NLog.Targets;
2011-10-23 22:54:09 -07:00
namespace NzbDrone.Common
{
public class ExceptioneerTarget : Target
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2012-01-19 22:12:07 -08:00
private static readonly Version version = new EnviromentProvider().Version;
protected override void Write(LogEventInfo logEvent)
{
2012-01-16 23:55:55 -08:00
if (logEvent == null || logEvent.Exception == null || !EnviromentProvider.IsProduction) return;
2011-10-17 12:23:34 -07:00
2011-11-13 22:01:51 -08:00
Logger.Trace("Sending Exception to Exceptioneer. Process Name: {0}", Process.GetCurrentProcess().ProcessName);
2011-10-16 21:09:43 -07:00
2012-01-19 22:12:07 -08:00
logEvent.Exception.Data.Add("Version", version.ToString());
2011-10-17 12:23:34 -07:00
logEvent.Exception.Data.Add("Message", logEvent.Message);
2012-01-19 22:12:07 -08:00
2011-10-16 21:09:43 -07:00
new Client
{
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
2011-11-08 09:48:34 -08:00
ApplicationName = "NzbDrone",
2011-10-16 21:09:43 -07:00
CurrentException = logEvent.Exception
}.Submit();
}
}
}