Fixed: Filter TinyIoC.TinyIoCResolutionException from Sentry

pull/6/head
ta264 6 years ago
parent 7a18ac51c2
commit 6548f4b1b7

@ -38,7 +38,9 @@ namespace NzbDrone.Common.Instrumentation.Sentry
// UnauthorizedAccessExceptions will just be user configuration issues
"UnauthorizedAccessException",
// Filter out people stuck in boot loops
"CorruptDatabaseException"
"CorruptDatabaseException",
// This also filters some people in boot loops
"TinyIoC.TinyIoCResolutionException"
};
private static readonly List<string> FilteredExceptionMessages = new List<string> {

Loading…
Cancel
Save