diff --git a/src/NzbDrone.Host/Owin/NlogTextWriter.cs b/src/NzbDrone.Host/Owin/NlogTextWriter.cs index b9f3ce62f..44c14ae27 100644 --- a/src/NzbDrone.Host/Owin/NlogTextWriter.cs +++ b/src/NzbDrone.Host/Owin/NlogTextWriter.cs @@ -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; } }