Skip to content

Instantly share code, notes, and snippets.

@dftaiwo
Created July 24, 2016 20:51
Show Gist options
  • Save dftaiwo/243126bdcc5a078135d05457a654bfa2 to your computer and use it in GitHub Desktop.
Save dftaiwo/243126bdcc5a078135d05457a654bfa2 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