mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixed: Filter TinyIoC.TinyIoCResolutionException from Sentry
This commit is contained in:
parent
7a18ac51c2
commit
6548f4b1b7
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue