Skip to content

Instantly share code, notes, and snippets.

@cato
Created July 22, 2011 04:43
Show Gist options
  • Select an option

  • Save cato/1098909 to your computer and use it in GitHub Desktop.

Select an option

Save cato/1098909 to your computer and use it in GitHub Desktop.
JS: Bulletproof Logging
var logger = function(e){
if(console){
console.log(e);
} else{
alert(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment