Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/c2c43666f61d7d0865269ddb0f63e6af2fa06804 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Shutdown logging before Environment.Exit.

pull/6/head
Qstick 8 years ago
parent 5d4eb3c6d8
commit c2c43666f6

@ -57,7 +57,7 @@ namespace NzbDrone.Console
private static void Exit(ExitCodes exitCode)
{
LogManager.Flush();
LogManager.Shutdown();
if (exitCode != ExitCodes.Normal)
{
@ -80,8 +80,6 @@ namespace NzbDrone.Console
System.Console.ReadLine();
}
//Need this to terminate on mono (thanks nlog)
LogManager.Configuration = null;
Environment.Exit((int)exitCode);
}
}

Loading…
Cancel
Save