Lidarr/src/NzbDrone.Common/Instrumentation/GlobalExceptionHandlers.cs

45 lines
1.4 KiB
C#
Raw Normal View History

using System;
2013-06-07 19:00:48 +00:00
using System.Threading.Tasks;
using NLog;
namespace NzbDrone.Common.Instrumentation
{
public static class GlobalExceptionHandlers
{
2014-12-17 07:12:26 +00:00
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(GlobalExceptionHandlers));
2013-06-07 19:00:48 +00:00
public static void Register()
{
AppDomain.CurrentDomain.UnhandledException += HandleAppDomainException;
TaskScheduler.UnobservedTaskException += HandleTaskException;
2013-06-07 19:00:48 +00:00
}
private static void HandleTaskException(object sender, UnobservedTaskExceptionEventArgs e)
2013-06-07 19:00:48 +00:00
{
var exception = e.Exception;
2013-06-07 19:00:48 +00:00
Console.WriteLine("Task Error: {0}", exception);
2017-01-05 23:32:17 +00:00
Logger.Error(exception, "Task Error");
2013-06-07 19:00:48 +00:00
}
private static void HandleAppDomainException(object sender, UnhandledExceptionEventArgs e)
2013-06-07 19:00:48 +00:00
{
var exception = e.ExceptionObject as Exception;
if (exception == null)
{
return;
}
if (exception is NullReferenceException &&
exception.ToString().Contains("Microsoft.AspNet.SignalR.Transports.TransportHeartbeat.ProcessServerCommand"))
{
Logger.Warn("SignalR Heartbeat interrupted");
return;
}
Console.WriteLine("EPIC FAIL: {0}", exception);
Logger.Fatal(exception, "EPIC FAIL.");
2013-06-07 19:00:48 +00:00
}
}
}