Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/2e174c03c9a730c1cc90dce4ef0f308fa27efc0f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
12 additions and
12 deletions
@ -1,5 +1,4 @@
using System ;
using System.Diagnostics ;
using System.Diagnostics ;
using Exceptioneer.WindowsFormsClient ;
using NLog ;
using NLog.Targets ;
@ -12,17 +11,18 @@ namespace NzbDrone.Core.Instrumentation
protected override void Write ( LogEventInfo logEvent )
{
if ( ! Debugger . IsAttached & & ! Process . GetCurrentProcess ( ) . ProcessName . Contains ( "JetBrains" ) )
{
Logger . Trace ( "Sending Exception to Exceptioneer. {0}" , Process . GetCurrentProcess ( ) . ProcessName ) ;
if ( logEvent = = null | | logEvent . Exception = = null ) return ;
if ( Debugger . IsAttached | | Process . GetCurrentProcess ( ) . ProcessName . Contains ( "JetBrains" ) ) return ;
Logger . Trace ( "Sending Exception to Exceptioneer. {0}" , Process . GetCurrentProcess ( ) . ProcessName ) ;
new Client
{
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265" ,
ApplicationName = "NZBDrone" ,
CurrentException = logEvent . Exception
} . Submit ( ) ;
new Client
{
ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265" ,
ApplicationName = "NZBDrone" ,
CurrentException = logEvent . Exception
} . Submit ( ) ;
}
}
}
}