I’ve added enableErrorTracking to snowplow, and modified an event to purposefully create errors; however, I don’t see any being reported.
What types of errors should I see when enableErrorTracking is active?
snowplow('enableErrorTracking', function (filter, contextAdder) {
console.log( 'args', arguments );
if (filter.hasOwnProperty('message')) {
console.log('--------------------------------------------')
console.log('error Msg', filter.message )
}
console.log('context', contextAdder);
});