Errors
Report errors to Sentry
yarn add @ansaro/errors
Usage
Set environment variable SENTRY_DSN
to your project's client key (DSN).
reportError
is an asynchronous function that takes two arguments:
-
Error
the error to report -
options
an object of optional settings
const { reportError } = require("@ansaro/errors");
async function() {
try {
...
} catch(ex) {
await reportError(ex, {
tags: {
service: "name-of-service"
}
})
}
}