Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
29 lines
722 B
Plaintext
29 lines
722 B
Plaintext
/**
|
|
* Get a list of possible event messages from a Sentry event.
|
|
*/
|
|
function getPossibleEventMessages(event) {
|
|
const possibleMessages = [];
|
|
|
|
if (event.message) {
|
|
possibleMessages.push(event.message);
|
|
}
|
|
|
|
try {
|
|
// @ts-expect-error Try catching to save bundle size
|
|
const lastException = event.exception.values[event.exception.values.length - 1];
|
|
if (lastException?.value) {
|
|
possibleMessages.push(lastException.value);
|
|
if (lastException.type) {
|
|
possibleMessages.push(`${lastException.type}: ${lastException.value}`);
|
|
}
|
|
}
|
|
} catch {
|
|
// ignore errors here
|
|
}
|
|
|
|
return possibleMessages;
|
|
}
|
|
|
|
export { getPossibleEventMessages };
|
|
//# sourceMappingURL=eventUtils.js.map
|