Skip to content

Instantly share code, notes, and snippets.

@smokinjoe
Created January 30, 2013 03:11
Show Gist options
  • Save smokinjoe/4670291 to your computer and use it in GitHub Desktop.
Save smokinjoe/4670291 to your computer and use it in GitHub Desktop.
Google chrome fix for console.log
// google chrome workaround
var log = function () {
console && console.log && console.log.apply(console,arguments);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment