mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 13:34:54 +00:00
Filter user issues from Sentry
(cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc) Co-authored-by: Qstick <qstick@gmail.com>
This commit is contained in:
parent
5fc1fc499c
commit
65068ab1af
1 changed files with 7 additions and 1 deletions
|
@ -43,7 +43,13 @@ public class SentryTarget : TargetWithLayout
|
||||||
"OutOfMemoryException",
|
"OutOfMemoryException",
|
||||||
|
|
||||||
// Filter out people stuck in boot loops
|
// 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>
|
public static readonly List<string> FilteredExceptionMessages = new List<string>
|
||||||
|
|
Loading…
Reference in a new issue