Log signalR errors as trace when they are network connection aborted

Closes #498
pull/4/head
Mark McDowall 9 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