Skip to content

Instantly share code, notes, and snippets.

@alecthomas
Created March 22, 2013 20:24
Show Gist options
  • Save alecthomas/5224459 to your computer and use it in GitHub Desktop.
Save alecthomas/5224459 to your computer and use it in GitHub Desktop.
Javascript console.log() with collapsed call stack
if (typeof console !== undefined) {
console.logJack = console.log;
console.log = function(){
console.groupCollapsed.apply(console, arguments);
console.logJack(new Error().stack);
console.groupEnd();
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment