Skip to content

Instantly share code, notes, and snippets.

@notacouch
Created November 4, 2018 04:55
Show Gist options
  • Save notacouch/6753042c634a5f9483d488d3657f0d7f to your computer and use it in GitHub Desktop.
Save notacouch/6753042c634a5f9483d488d3657f0d7f to your computer and use it in GitHub Desktop.
life hack: console log function that auto-indents based on the depth of your call stack
function log(message) {
console.log(' '.repeat(new Error().stack.match(/\n/g).length - 2) + message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment