logger.js 257 B

12345678
  1. const _ = require('lodash');
  2. const chalk = require('chalk');
  3. module.exports = function () {
  4. var arr = _.values(arguments);
  5. arr.unshift(chalk.blue.bold('[') + chalk.yellow.bold('Backend API') + chalk.blue.bold(']'));
  6. console.log.apply(null, arr);
  7. };