Skip to content

Instantly share code, notes, and snippets.

@tallykatt
Forked from dftaiwo/debug.js
Created July 25, 2016 01:16
Show Gist options
  • Save tallykatt/701576eae7018728abbc944f0a7f26d8 to your computer and use it in GitHub Desktop.
Save tallykatt/701576eae7018728abbc944f0a7f26d8 to your computer and use it in GitHub Desktop.
JS Console Logging For Production & Debug Builds
var debugMode=false;
//.....
function logMessage() {
if(!debugMode) return;
console.log(Array.prototype.slice.call(arguments) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment