Created
January 16, 2014 19:17
-
-
Save davidecavaliere/8461492 to your computer and use it in GitHub Desktop.
Handy log object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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