Skip to content

Instantly share code, notes, and snippets.

@purplecabbage
Created March 23, 2014 03:09
Show Gist options
  • Save purplecabbage/9718060 to your computer and use it in GitHub Desktop.
Save purplecabbage/9718060 to your computer and use it in GitHub Desktop.
Catch a log window errors
window.addEventListener("error", function (err) {
console.log("Error in file: " + err.filename +
" ln:" + err.lineno +
" : " + err.message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment