Skip to content

Commit

Permalink
Merge pull request #1187 from chjpugh/1185-removes-ignoreError-from-R…
Browse files Browse the repository at this point in the history
…aven

Removes ignoreError since Sentry now ignores `TransitionAborted` erro…
  • Loading branch information
chjpugh committed Mar 24, 2017
2 parents a1b4318 + d770562 commit f344d17
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions app/services/raven.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,6 @@ export default RavenLogger.extend({
return this._super(...arguments);
},

ignoreError(error) {
// Ember 2.X seems to not catch `TransitionAborted` errors caused by
// regular redirects. We don't want these errors to show up in Sentry
// so we have to filter them ourselves.
//
// Once this issue https://github.com/emberjs/ember.js/issues/12505 is
// resolved we can remove this code.
//
// Last checked 9/28/2016
return error.name === 'TransitionAborted';
},

callRaven(/* methodName, ...optional */) {
return this._super(...arguments);
}
Expand Down

0 comments on commit f344d17

Please sign in to comment.