Skip to content

Include the Rollbar client your Ember app, and report Ember.Logger.error() to Rollbar

License

Notifications You must be signed in to change notification settings

themlsmith/ember-cli-rollbar

 
 

Repository files navigation

ember-cli-rollbar

Drop-in Rollbar error reporting integration.

Installation

Just add your Rollbar client-side access token to your config/environment.js:

var ENV = {
  //...
  rollbar: {
    accessToken: '<your token here>'
  }
};

The rollbar config object is used to configure Rollbar, and defaults to the following options:

{
  enabled: environment !== 'development',
  captureUncaught: true,
  payload: {
    environment: environment
  }
}

Usage

By default, any calls to Ember.Logger.error() will be logged to Rollbar.

About

Include the Rollbar client your Ember app, and report Ember.Logger.error() to Rollbar

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • JavaScript 73.7%
  • HTML 18.2%
  • Shell 8.1%