Skip to content

Instantly share code, notes, and snippets.

@davidecavaliere
Created January 16, 2014 19:17
Show Gist options
  • Save davidecavaliere/8461492 to your computer and use it in GitHub Desktop.
Save davidecavaliere/8461492 to your computer and use it in GitHub Desktop.
Handy log object
var debug = true;
var log = {
debug : function(string) {
if (debug) {
console.info(string);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment