mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
273de41d23
Added udp logging Added SyncProvider to provide async long running tasks Refactored SyncSeries to SyncProvider Episode Info is now fetched automatically Optimized RefreshEpisodeInfo for better performance
85 lines
2.1 KiB
C#
85 lines
2.1 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Threading;
|
|
using Exceptioneer.WindowsFormsClient;
|
|
using NLog;
|
|
using NLog.Config;
|
|
using NLog.Targets;
|
|
|
|
namespace NzbDrone
|
|
{
|
|
static class Program
|
|
{
|
|
|
|
private static readonly Logger Logger = LogManager.GetLogger("Application");
|
|
|
|
static void Main()
|
|
{
|
|
Logger.Info(Process.GetCurrentProcess().Id);
|
|
|
|
try
|
|
{
|
|
Thread.CurrentThread.Name = "Host";
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += ((s, e) => AppDomainException(e));
|
|
AppDomain.CurrentDomain.ProcessExit += ProgramExited;
|
|
AppDomain.CurrentDomain.DomainUnload += ProgramExited;
|
|
System.Diagnostics.Process.GetCurrentProcess().Exited += ProgramExited;
|
|
|
|
Config.ConfigureNlog();
|
|
|
|
Logger.Info("Starting NZBDrone. Start-up Path:'{0}'", Config.ProjectRoot);
|
|
|
|
IISController.KillOrphaned();
|
|
IISController.StartIIS();
|
|
|
|
System.Diagnostics.Process.Start(IISController.AppUrl);
|
|
|
|
#if DEBUG
|
|
//Manually Attach debugger to IISExpress
|
|
if (Debugger.IsAttached)
|
|
{
|
|
ProcessAttacher.Attach();
|
|
}
|
|
#endif
|
|
|
|
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
AppDomainException(e);
|
|
}
|
|
|
|
Console.Write("Press Enter At Any Time To Exit...");
|
|
Console.ReadLine();
|
|
IISController.StopIIS();
|
|
}
|
|
|
|
|
|
private static void AppDomainException(object excepion)
|
|
{
|
|
Console.WriteLine("EPIC FAIL: {0}", excepion);
|
|
Logger.Fatal("EPIC FAIL: {0}", excepion);
|
|
|
|
new Client
|
|
{
|
|
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
|
|
ApplicationName = "NZBDrone",
|
|
CurrentException = excepion as Exception
|
|
}.Submit();
|
|
|
|
IISController.StopIIS();
|
|
}
|
|
|
|
static void ProgramExited(object sender, EventArgs e)
|
|
{
|
|
IISController.StopIIS();
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|