Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/7d3f6c81e04d871e5e57a451be17372a657839a7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
18 additions and
5 deletions
@ -12,6 +12,9 @@
<target name="file" xsi:type="File"
layout="${longdate} [${level}] ${logger}: ${message} ${exception:ToString}"
fileName="${basedir}/App_Data/logs/${shortdate}.txt" />
<target name ="xmlFile" xsi:type="File"
fileName="${basedir}/App_Data/logs/${shortdate}.xml"
layout="${log4jxmlevent:includeSourceInfo=true:includeCallSite=true:includeMDC=true:appInfo=true:includeNDC=true:includeNLogData=true}"/>
</targets>
<rules>
@ -19,6 +22,11 @@
<logger name="IIS*" minlevel="Trace" writeTo="consoleTarget"/>
<logger name="Application" minlevel="Trace" writeTo="consoleTarget"/>
<logger name="*" minlevel="Trace" writeTo="udpTarget"/>
<logger name="*" minlevel="Off" writeTo="xmlFile">
<filters>
<when condition="logger == 'NzbDrone.SubSonic'" action="Ignore" />
</filters>
</logger>
<logger name="*" minlevel="Trace" writeTo="file">
<filters>
<when condition="logger == 'NzbDrone.SubSonic'" action="Ignore" />
@ -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 ( ) ;
}