Skip to content

Instantly share code, notes, and snippets.

@vernondegoede
Created May 21, 2016 15:17
Show Gist options
  • Save vernondegoede/04572a846a82d64ecfa35d770e65b6ca to your computer and use it in GitHub Desktop.
Save vernondegoede/04572a846a82d64ecfa35d770e65b6ca to your computer and use it in GitHub Desktop.
Send errors to Google Analytics
// Send errors to Google Analytics
window.onerror = (msg, file, line, column, error=null) => {
try {
if (error) msg = error.stack;
ga('send', 'event', 'error', '${file}:${line}', msg);
} catch (e) {
// Do nothing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment