In Chrome inspector the console log is outputted, but I get errors:
image1096×1042 204 KB
What is this “raven” error? and what is the undefined error trying to tell me?
Are you using Sentry? For the first error you may be missing some configuration keys for the Sentry integration.
Raven.js is the official browser JavaScript client for Sentry.
The second one, Cannot read property 'get' of undefined. That’s pointing to the model hook on one of your routes. You can click on the second row at Class.model (route.js:14) and see which route it is. You may be trying to access a property on sometime that could be undefined. You can paste that route file here and we can take a look.