2013-03-01 03:50:50 +03:00
|
|
|
using System;
|
2013-08-31 01:55:01 +03:00
|
|
|
using NLog;
|
2013-08-13 08:08:37 +03:00
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-08-31 04:42:30 +03:00
|
|
|
using NzbDrone.Common.Instrumentation;
|
2013-08-16 05:20:54 +03:00
|
|
|
using NzbDrone.Host;
|
2013-03-01 03:50:50 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Console
|
|
|
|
{
|
2013-08-07 08:32:22 +03:00
|
|
|
public static class ConsoleApp
|
2013-03-01 03:50:50 +03:00
|
|
|
{
|
2013-08-31 04:42:30 +03:00
|
|
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger();
|
|
|
|
|
2013-03-01 03:50:50 +03:00
|
|
|
public static void Main(string[] args)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-11-26 09:53:36 +03:00
|
|
|
var startupArgs = new StartupContext(args);
|
2013-08-31 04:42:30 +03:00
|
|
|
LogTargets.Register(startupArgs, false, true);
|
2013-11-26 09:53:36 +03:00
|
|
|
Bootstrap.Start(startupArgs, new ConsoleAlerts());
|
2013-03-01 03:50:50 +03:00
|
|
|
}
|
2013-08-07 08:32:22 +03:00
|
|
|
catch (Exception e)
|
2013-03-01 03:50:50 +03:00
|
|
|
{
|
2013-11-26 08:36:06 +03:00
|
|
|
System.Console.WriteLine("");
|
|
|
|
System.Console.WriteLine("");
|
2013-09-05 04:03:41 +03:00
|
|
|
Logger.FatalException("EPIC FAIL!", e);
|
2013-11-26 08:36:06 +03:00
|
|
|
System.Console.WriteLine("Press any key to exit...");
|
2013-08-21 01:48:10 +03:00
|
|
|
System.Console.ReadLine();
|
2013-03-01 03:50:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-31 04:42:30 +03:00
|
|
|
}
|