Stop printing garbage when Sentry yells about 429s

This commit is contained in:
Ben Gotow 2017-10-27 23:55:53 -07:00
parent 614bc198c5
commit b2b30a1bf5
2 changed files with 1 additions and 5 deletions

View file

@ -2,8 +2,6 @@
### 1.0.7 (10/28/2017)
Features:
Fixes:
- The `Starred` and `Unread` views now correctly show threads with many starred/unread messages. (#100)

View file

@ -57,9 +57,7 @@ module.exports = class RavenErrorReporter {
).install();
Raven.on('error', e => {
console.log(e.reason);
console.log(e.statusCode);
console.log(e.response);
console.log(`Raven: ${e.statusCode} - ${e.reason}`);
});
}
};