Skip to content

Instantly share code, notes, and snippets.

@0x4a
Created June 1, 2014 18:59
Show Gist options
  • Save 0x4a/8c26565ae2dcd2e38872 to your computer and use it in GitHub Desktop.
Save 0x4a/8c26565ae2dcd2e38872 to your computer and use it in GitHub Desktop.
simple wrapper for console.log() - #js #dev
//http://htmltweaks.com/Debugging_JavaScript_with_the_Console
var log = function(msg, force) {
force ? alert(msg) : (window.console && window.console.log ? window.console.log(msg) : null);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment