Errorception

Integrating SessionStack with Errorception

Add a SessionStack recording to every Errorception report.

Add this code anywhere in your app, after SessionStack and Errorception have been loaded.

sessionstack('getSessionId', function(sessionId) {
    if (sessionId) {
        _errs.meta = {
            recording: 'https://app.sessionstack.com/player/#/sessions/' + sessionId,
        };
    }
});