@roarr/sentry

Sentry integration that adds Roarr logs to Sentry breadcrumbs.

Usage no npm install needed!

<script type="module">
  import roarrSentry from 'https://cdn.skypack.dev/@roarr/sentry';
</script>

README

Roarr Sentry Integration

Travis build status Coveralls NPM version Canonical Code Style Twitter Follow

Sentry integration that adds Roarr logs to Sentry breadcrumbs.

Motivation

Sentry breadcrumbs allow one to trace down the root cause of an error. Breadcrumbs can include arbitrary data, including log messages. Roarr Sentry integration adds Roarr logs to Sentry breadcrumbs to give a richer context about every issue raised on Sentry.

Usage

import {
  createRoarrSentryIntegration,
} from '@roarr/sentry';

createSentry({
  integrations: [
    createRoarrSentryIntegration(),
  ],
});