@ansaro/errors
v0.2.2
Published
Report errors to Sentry
Downloads
18
Readme
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 reportoptions
an object of optional settings
const { reportError } = require("@ansaro/errors");
async function() {
try {
...
} catch(ex) {
await reportError(ex, {
tags: {
service: "name-of-service"
}
})
}
}