mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 06:17:08 -04:00
Filter user issues from Sentry (#5859)
This commit is contained in:
parent
f2c31e92ce
commit
03d361f553
1 changed files with 7 additions and 1 deletions
|
@ -40,7 +40,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…
Add table
Add a link
Reference in a new issue