Exceptioneer is only enabled during release.

Nzbdrone.exe waits for enter before closing on error.
This commit is contained in:
kay.one 2011-04-25 11:41:20 -07:00
commit 7d3f6c81e0
2 changed files with 18 additions and 5 deletions

View file

@ -48,6 +48,9 @@ namespace NzbDrone
{
AppDomainException(e);
}
Console.WriteLine("Press enter to exit.");
Console.ReadLine();
}
private static void Attach()
@ -88,12 +91,14 @@ namespace NzbDrone
Console.WriteLine("EPIC FAIL: {0}", excepion);
Logger.Fatal("EPIC FAIL: {0}", excepion);
#if Release
new Client
{
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
ApplicationName = "NZBDrone",
CurrentException = excepion as Exception
}.Submit();
{
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265",
ApplicationName = "NZBDrone",
CurrentException = excepion as Exception
}.Submit();
#endif
IISController.StopServer();
}