2013-02-28 16:50:50 -08:00
|
|
|
using System;
|
2013-08-20 15:48:10 -07:00
|
|
|
using System.Threading;
|
2013-08-30 15:55:01 -07:00
|
|
|
using NLog;
|
2013-08-12 22:08:37 -07:00
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-08-30 18:42:30 -07:00
|
|
|
using NzbDrone.Common.Instrumentation;
|
2013-08-15 19:20:54 -07:00
|
|
|
using NzbDrone.Host;
|
2013-02-28 16:50:50 -08:00
|
|
|
|
|
|
|
namespace NzbDrone.Console
|
|
|
|
{
|
2013-08-06 22:32:22 -07:00
|
|
|
public static class ConsoleApp
|
2013-02-28 16:50:50 -08:00
|
|
|
{
|
2013-08-30 18:42:30 -07:00
|
|
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger();
|
|
|
|
|
2013-02-28 16:50:50 -08:00
|
|
|
public static void Main(string[] args)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-08-30 18:42:30 -07:00
|
|
|
var startupArgs = new StartupArguments(args);
|
|
|
|
LogTargets.Register(startupArgs, false, true);
|
|
|
|
Bootstrap.Start(startupArgs, new ConsoleAlerts());
|
2013-08-15 19:20:54 -07:00
|
|
|
}
|
2013-08-20 15:12:35 -07:00
|
|
|
catch (TerminateApplicationException)
|
2013-08-15 19:20:54 -07:00
|
|
|
{
|
2013-02-28 16:50:50 -08:00
|
|
|
}
|
2013-08-06 22:32:22 -07:00
|
|
|
catch (Exception e)
|
2013-02-28 16:50:50 -08:00
|
|
|
{
|
2013-09-04 18:03:41 -07:00
|
|
|
Logger.FatalException("EPIC FAIL!", e);
|
2013-08-20 15:48:10 -07:00
|
|
|
System.Console.ReadLine();
|
2013-02-28 16:50:50 -08:00
|
|
|
}
|
2013-08-20 15:12:35 -07:00
|
|
|
|
2013-08-20 15:48:10 -07:00
|
|
|
while (true)
|
2013-08-20 15:12:35 -07:00
|
|
|
{
|
2013-08-20 15:48:10 -07:00
|
|
|
Thread.Sleep(10 * 60);
|
2013-08-20 15:12:35 -07:00
|
|
|
}
|
2013-02-28 16:50:50 -08:00
|
|
|
}
|
|
|
|
}
|
2013-08-30 18:42:30 -07:00
|
|
|
}
|