Filter user issues from Sentry

(cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc)
pull/1817/head v1.8.1.3837
Qstick 10 months ago committed by Bogdan
parent f83828cc22
commit 95c2531107

@ -50,7 +50,13 @@ namespace NzbDrone.Common.Instrumentation.Sentry
"UnauthorizedAccessException",
// Filter out people stuck in boot loops
"CorruptDatabaseException"
"CorruptDatabaseException",
// Filter SingleInstance Termination Exceptions
"TerminateApplicationException",
// User config issue, root folder missing, etc.
"DirectoryNotFoundException"
};
public static readonly List<string> FilteredExceptionMessages = new List<string>

Loading…
Cancel
Save