mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-29 11:52:34 +08:00
Stop printing garbage when Sentry yells about 429s
This commit is contained in:
parent
614bc198c5
commit
b2b30a1bf5
2 changed files with 1 additions and 5 deletions
|
@ -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)
|
||||
|
|
|
@ -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}`);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue