Skip to content

Instantly share code, notes, and snippets.

@mshuffett
Created July 2, 2013 08:22
Show Gist options
  • Save mshuffett/5907607 to your computer and use it in GitHub Desktop.
Save mshuffett/5907607 to your computer and use it in GitHub Desktop.
Make console.log object accessible.
console.oldLog = console.log;
console.log = function(value) {
console.oldLog(value);
window.$log = value;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment