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

10 lines
475 B

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true">
<targets>
<target name="file" xsi:type="File" keepFileOpen="true" openFileCacheTimeout="1"
layout="${longdate} [${level}] ${logger}: ${message} ${exception:ToString}"
fileName="${basedir}/App_Data/logs/${shortdate}.txt" />
</targets>
<rules>
<logger name="*" minlevel="Off" writeTo="file"/>
</rules>
</nlog>