(
message: string,
data: {
level: Sentry.SeverityLevel;
tags?: { [key: string]: string };
extra?: { [key: string]: unknown };
},
)
| 116 | export function captureException(error: unknown) { |
| 117 | if (!sentryEnabled) { |
| 118 | return; |
| 119 | } |
| 120 | Sentry.captureException(error); |
| 121 | } |
| 122 | |
| 123 | export function captureMessage( |
| 124 | message: string, |
| 125 | data: { |
| 126 | level: Sentry.SeverityLevel; |
| 127 | tags?: { [key: string]: string }; |
| 128 | extra?: { [key: string]: unknown }; |
| 129 | }, |
| 130 | ) { |
| 131 | if (!sentryEnabled) { |
| 132 | return; |
| 133 | } |
no outgoing calls
no test coverage detected