Adding more detailed exception tracking

This commit is contained in:
Jeff Avallone 2015-01-01 12:24:11 -05:00
parent 491c9535a9
commit 0600d18bb5
1 changed files with 15 additions and 6 deletions

View File

@ -9,12 +9,21 @@ window._gaq = (typeof _gaq !== 'undefined') ? _gaq : {
(function() {
window.addEventListener('error', function(error) {
_gaq.push([
'_trackEvent',
'global',
'exception',
`${error.filename}(${error.lineno}): ${error.message}`
]);
if (typeof error.error !== 'undefined' && typeof error.error.stack !== 'undefined') {
_gaq.push([
'_trackEvent',
'global',
'exception',
error.error.stack
]);
} else if (error.filename !== '') {
_gaq.push([
'_trackEvent',
'global',
'exception',
`${error.filename}(${error.lineno},${error.colno}): ${error.message}`
]);
}
});
if (document.body.querySelector('#content .application')) {