I’m not sure if this is by design but what I’ve done is that I set config with autoBreadcrumbs
options set like this:
autoBreadcrumbs: {
'console': false, // console logging
}
This means that I’m handling my console output by myself, it looks like this:
Raven.captureBreadcrumb({
message,
timestamp,
data: [{ clicked, initialReq }, { hasNavigator: Boolean(window.navigator) } ],
category: 'INFO',
type: 'console'
})
I keep my console messages in an array and then just before I track exception using Raven.captureException
, I loop through them and call the code above. The timestamp
attribute has the correct time of when it actually happened.
Which brings me to web interface where I can clearly see that the timestamp is correct but the ordering is wrong:
Basically I can see that ui.click
events are happening. On each of these events I print stuff into the console. It has the correct time but the manually captured breadcrumbs are at the bottom.
What is wrong? My configuration?