fix: Report app startup and DB migration errors to Sentry (#5127)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-01-11 18:28:35 +01:00
committed by GitHub
parent 3c109ffab1
commit a573db2ef7
4 changed files with 74 additions and 79 deletions

View File

@@ -2,7 +2,7 @@ import type { Primitives } from './utils';
import * as Logger from './LoggerProxy';
export interface ReportingOptions {
level?: 'warning' | 'error';
level?: 'warning' | 'error' | 'fatal';
tags?: Record<string, Primitives>;
extra?: Record<string, unknown>;
}