1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Ignore more signalr non-errors

This commit is contained in:
Mark McDowall 2015-05-31 00:10:45 -07:00
parent a1ff7cbef0
commit f7adb19474

View File

@ -58,15 +58,23 @@ private LogLevel GetLogLevel(string value)
{
return LogLevel.Trace;
}
if (lower.Contains("signalr") && lower.Contains("an operation was attempted on a nonexistent network connection"))
if (lower.Contains("signalr"))
{
return LogLevel.Trace;
}
if (lower.Contains("an operation was attempted on a nonexistent network connection"))
{
return LogLevel.Trace;
}
if (lower.Contains("signalr") && lower.Contains("the network connection was aborted by the local system"))
{
return LogLevel.Trace;
if (lower.Contains("the network connection was aborted by the local system"))
{
return LogLevel.Trace;
}
if (lower.Contains("the socket has been shut down"))
{
return LogLevel.Trace;
}
}
return LogLevel.Error;