Add ServerExceptionProblem insight

This commit is contained in:
2026-04-30 21:33:07 +00:00
parent 1d09358e7b
commit 423c6d3963
3 changed files with 110 additions and 0 deletions

View File

@@ -24,4 +24,6 @@ class DebugServerPattern
public const string MOD_MISSING = '/required mod "(?<mod>[^"]+)" not found/';
public const string EXCEPTION_HEADER = '/^\[\d{2}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{3}\]\s+ERROR:.*Exception thrown/';
public const string EXCEPTION = '/^\[\d{2}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{3}\][^\n]+Exception thrown\n\t(?<type>[A-Za-z0-9_.$]+(?:Exception|Error))[^\n]*(?<body>(?:\n\t.+)*)/';
}