| 1 | import { recordCrashReport } from "@/features/telemetry/services/telemetry"; |
| 2 | |
| 3 | interface BootstrapStep { |
| 4 | name: string; |
| 5 | } |
| 6 | |
| 7 | export function logBootstrapError(step: string, error: unknown) { |
| 8 | console.error(`App bootstrap failed during ${step}:`, error); |
nothing calls this directly
no outgoing calls
no test coverage detected