Lidarr/src/NzbDrone.Console/ConsoleApp.cs

51 lines
1.5 KiB
C#
Raw Normal View History

2013-03-01 00:50:50 +00:00
using System;
2013-08-20 22:48:10 +00:00
using System.Threading;
2013-08-30 22:55:01 +00:00
using NLog;
2013-11-26 05:36:06 +00:00
using NzbDrone.Common;
using NzbDrone.Common.EnvironmentInfo;
2013-08-31 01:42:30 +00:00
using NzbDrone.Common.Instrumentation;
using NzbDrone.Host;
2013-03-01 00:50:50 +00:00
namespace NzbDrone.Console
{
public static class ConsoleApp
2013-03-01 00:50:50 +00:00
{
2013-08-31 01:42:30 +00:00
private static readonly Logger Logger = NzbDroneLogger.GetLogger();
2013-03-01 00:50:50 +00:00
public static void Main(string[] args)
{
try
{
2013-08-31 01:42:30 +00:00
var startupArgs = new StartupArguments(args);
LogTargets.Register(startupArgs, false, true);
2013-11-26 05:36:06 +00:00
var container = Bootstrap.Start(startupArgs, new ConsoleAlerts());
if (startupArgs.InstallService || startupArgs.UninstallService)
{
return;
}
var serviceFactory = container.Resolve<INzbDroneServiceFactory>();
while (!serviceFactory.IsServiceStopped)
{
Thread.Sleep(1000);
}
}
2013-11-26 02:46:12 +00:00
catch (TerminateApplicationException e)
{
2013-11-26 02:46:12 +00:00
Logger.Info("Application has been terminated. Reason " + e.Reason);
return;
2013-03-01 00:50:50 +00:00
}
catch (Exception e)
2013-03-01 00:50:50 +00:00
{
2013-11-26 05:36:06 +00:00
System.Console.WriteLine("");
System.Console.WriteLine("");
2013-09-05 01:03:41 +00:00
Logger.FatalException("EPIC FAIL!", e);
2013-11-26 05:36:06 +00:00
System.Console.WriteLine("Press any key to exit...");
2013-08-20 22:48:10 +00:00
System.Console.ReadLine();
2013-03-01 00:50:50 +00:00
}
}
}
2013-08-31 01:42:30 +00:00
}