Skip to content

Commit

Permalink
Disable Sentry non-error logging for now
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Mar 21, 2018
1 parent 9444c5f commit 6b0e767
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/common/reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ export const report = err => {

export const log = message => {
if (!isDev && Raven && message) {
Raven.captureMessage(message);
// TODO: Enable this again when we figure out how to have
// logs only attached to actual errors and not spam Slack
// Raven.captureMessage(message);
}
};

Expand Down

0 comments on commit 6b0e767

Please sign in to comment.