Skip to content

Instantly share code, notes, and snippets.

@Tushkiz
Created May 6, 2013 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tushkiz/5523886 to your computer and use it in GitHub Desktop.
Save Tushkiz/5523886 to your computer and use it in GitHub Desktop.
Better usage of console.log by Kasper. http://idered.pl/2012/11/better-usage-of-console.log/
var debug = true,
_log = function() {
debug && window.console && console.log.apply(console, arguments);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment