mirror of
https://github.com/Radarr/Radarr
synced 2025-12-12 11:25:06 +01:00
Filter user issues from Sentry (#5859)
(cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc)
This commit is contained in:
parent
54bb267e17
commit
a6f61b2722
1 changed files with 7 additions and 1 deletions
|
|
@ -49,7 +49,13 @@ public class SentryTarget : TargetWithLayout
|
|||
"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…
Reference in a new issue