Update raven configuration in server

This commit is contained in:
vjrj 2018-04-04 08:32:45 +02:00
parent ea50b17df3
commit f042beceb1

View file

@ -4,10 +4,9 @@ import { Meteor } from 'meteor/meteor';
const ravenOptions = {};
const ravenLogger = new RavenLogger({
publicDSN: Meteor.settings.public.sentryPublicDSN,
privateDSN: Meteor.settings.sentryPrivateDSN,
shouldCatchConsoleError: true, // default
trackUser: true // default
shouldCatchConsoleError: true, // default true
trackUser: true // default false
}, ravenOptions);
export default ravenLogger;