Better exception handling in NzbDrone.exe

This commit is contained in:
kay.one 2011-10-16 18:42:20 -07:00
commit f1248d12c6
2 changed files with 7 additions and 11 deletions

View file

@ -1,16 +1,12 @@
using System;
using System.Reflection;
using NLog;
using Ninject;
using NzbDrone.Providers;
namespace NzbDrone
{
public static class AppMain
{
private static readonly Logger Logger = LogManager.GetLogger("Host.Main");
public static void Main(string[] args)
{
try
@ -21,8 +17,7 @@ namespace NzbDrone
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
Logger.Fatal(e.ToString());
MonitoringProvider.AppDomainException(e);
}
}