Skip to content

Instantly share code, notes, and snippets.

@knksmith57
Created July 14, 2017 23:09
Show Gist options
  • Save knksmith57/7b673fe77429534a93f2c7ea5ff61c20 to your computer and use it in GitHub Desktop.
Save knksmith57/7b673fe77429534a93f2c7ea5ff61c20 to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
'use strict'
const chalk = require('chalk')
const errStr = (new Error('oh no errors r bad!')).stack
console.log(chalk.gray('12:00:00') + ' 🚨 ' + chalk.cyan('some:ns') + ' ' + chalk.dim.red(errStr))
console.log(chalk.gray('12:00:00') + ' 🚨 ' + chalk.cyan('some:ns') + ' ' + chalk.red(errStr))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment