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

Log signalR errors as trace when they are network connection aborted

Closes 
pull/3113/head
Mark McDowall 10 years ago
parent 49acae0fbb
commit f4b9d0336d

@ -64,6 +64,11 @@ namespace NzbDrone.Host.Owin
return LogLevel.Trace;
}
if (lower.Contains("signalr") && lower.Contains("the network connection was aborted by the local system"))
{
return LogLevel.Trace;
}
return LogLevel.Error;
}
}

Loading…
Cancel
Save