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

Fixed error log file.

pull/3113/head
kay.one 13 years ago
parent dde0432efc
commit 64ae67acbb

@ -16,11 +16,11 @@ namespace NzbDrone.Services.Service.App_Start
public static void PreStart()
{
string logPath = string.Format("C:\\NLog\\{0}\\{1}\\${{shortdate}}.log", HostingEnvironment.SiteName, new EnviromentProvider().Version);
string error = string.Format("C:\\NLog\\{0}\\{1}\\${{shortdate}}.Error.log", HostingEnvironment.SiteName, new EnviromentProvider().Version);
string error = string.Format("C:\\NLog\\{0}\\{1}\\${{shortdate}}_Error.log", HostingEnvironment.SiteName, new EnviromentProvider().Version);
LogConfiguration.RegisterUdpLogger();
LogConfiguration.RegisterFileLogger(logPath, LogLevel.Trace);
LogConfiguration.RegisterFileLogger(error, LogLevel.Warn);
//LogConfiguration.RegisterFileLogger(error, LogLevel.Warn);
LogConfiguration.Reload();
logger.Info("Logger has been configured. (App Start)");

Loading…
Cancel
Save