mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Exceptioneer is only enabled during release.
Nzbdrone.exe waits for enter before closing on error.
This commit is contained in:
parent
a8815cd5ea
commit
7d3f6c81e0
2 changed files with 18 additions and 5 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue