Don't return false
-
main:
console.log("I am logged");
return false;
console.log("but not me");
Script silently stops without any warnings or information in console or to email.
-
Why wouldn't it stop there? Also why would you expect an error from this?
-
If that is intended behavior, it should be documented somewhere.
-