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

Log global inner exceptions

pull/2/head
Keivan Beigi 11 years ago
parent aa75b3d331
commit 7b49669b95

@ -32,6 +32,11 @@ namespace NzbDrone.Common.Instrumentation
Console.WriteLine("EPIC FAIL: {0}", exception);
Logger.FatalException("EPIC FAIL: " + exception.Message, exception);
if (exception.InnerException != null)
{
AppDomainException(exception.InnerException);
}
}
}
}
Loading…
Cancel
Save