File size: 274 Bytes
b91e262 | 1 2 3 4 5 6 7 8 9 | import { patchConsoleError } from './errors/intercept-console-error'
import { handleGlobalErrors } from './errors/use-error-handler'
import { initializeDebugLogForwarding } from './forward-logs'
handleGlobalErrors()
patchConsoleError()
initializeDebugLogForwarding('app')
|