Files
super-app/App/common/hooks/useSentryLogging.ts
2024-03-27 15:06:03 +00:00

5 lines
141 B
TypeScript

import * as Sentry from "@sentry/react";
export const logToSentry = (message: string) => {
Sentry.captureException(new Error(message));
};