2012-02-05 09:34:36 +03:00
|
|
|
using System.Linq;
|
|
|
|
using System;
|
2012-01-20 09:12:07 +03:00
|
|
|
using System.Diagnostics;
|
2010-10-24 10:46:58 +03:00
|
|
|
using Exceptioneer.WindowsFormsClient;
|
|
|
|
using NLog;
|
|
|
|
using NLog.Targets;
|
|
|
|
|
2012-02-05 09:34:36 +03:00
|
|
|
namespace NzbDrone.Common.NlogTargets
|
2010-10-24 10:46:58 +03:00
|
|
|
{
|
|
|
|
public class ExceptioneerTarget : Target
|
|
|
|
{
|
2011-07-04 08:03:05 +03:00
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
2012-03-07 05:59:43 +03:00
|
|
|
private static readonly Version version = new EnvironmentProvider().Version;
|
2012-01-20 09:12:07 +03:00
|
|
|
|
2010-10-24 10:46:58 +03:00
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
|
|
{
|
2012-03-07 05:59:43 +03:00
|
|
|
if (logEvent == null || logEvent.Exception == null || !EnvironmentProvider.IsProduction) return;
|
2011-10-17 22:23:34 +03:00
|
|
|
|
2011-11-14 09:01:51 +03:00
|
|
|
Logger.Trace("Sending Exception to Exceptioneer. Process Name: {0}", Process.GetCurrentProcess().ProcessName);
|
2011-10-17 07:09:43 +03:00
|
|
|
|
2012-01-20 09:12:07 +03:00
|
|
|
logEvent.Exception.Data.Add("Version", version.ToString());
|
2011-10-17 22:23:34 +03:00
|
|
|
logEvent.Exception.Data.Add("Message", logEvent.Message);
|
|
|
|
|
2012-01-20 09:12:07 +03:00
|
|
|
|
2011-10-17 07:09:43 +03:00
|
|
|
new Client
|
|
|
|
{
|
|
|
|
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
|
2011-11-08 20:48:34 +03:00
|
|
|
ApplicationName = "NzbDrone",
|
2011-10-17 07:09:43 +03:00
|
|
|
CurrentException = logEvent.Exception
|
|
|
|
}.Submit();
|
2011-07-04 08:03:05 +03:00
|
|
|
|
2010-10-24 10:46:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|