Skip to content

Instantly share code, notes, and snippets.

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 voidabhi/2a927cf464a3f8adc97d to your computer and use it in GitHub Desktop.
Save voidabhi/2a927cf464a3f8adc97d to your computer and use it in GitHub Desktop.
Log function for Chrome Console
var debug = true;
var log = function(type){ debug && window.console && console[( type in console ? type : 'log' )].apply(console, Array.prototype.slice.call(arguments, ( type in console ? 1 : 0 ))); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment