Skip to content

Instantly share code, notes, and snippets.

@cmandersen
Created March 16, 2015 15:18
Show Gist options
  • Save cmandersen/d21321543bb0c061f779 to your computer and use it in GitHub Desktop.
Save cmandersen/d21321543bb0c061f779 to your computer and use it in GitHub Desktop.
Log only when run on localhost
/**
* Logging function to log only when run on localhost
*/
function log() {
if(document.location.hostname == 'localhost') {
console.log.apply(console, arguments);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment