UNPKG

270 BJavaScriptView Raw
1'use strict'
2var chalk = require('chalk')
3
4module.exports = function log (key, msg) {
5 console.log(' ' + chalk.grey(key) + ' : ' + chalk.cyan(msg))
6}
7
8module.exports.error = function log (key, msg) {
9 console.error(' ' + chalk.red(key) + ' : ' + chalk.white(msg))
10}