Added raven/sentry to server side

This commit is contained in:
vjrj 2018-02-16 13:12:06 +01:00
parent 44428be8aa
commit 45a63548c7
3 changed files with 15 additions and 2 deletions

View file

@ -5,9 +5,8 @@ const ravenOptions = {};
const ravenLogger = new RavenLogger({
publicDSN: Meteor.settings.public.sentryPublicDSN, // will be used on the client
privateDSN: Meteor.settings.sentryPrivateDSN, // will be used on the server
shouldCatchConsoleError: true, // default
trackUser: false // default
trackUser: true // default
}, ravenOptions);
export default ravenLogger;